GithubHelp home page GithubHelp logo

codingbat-js's Introduction

codingbat-js's People

Contributors

ericcarraway avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar

codingbat-js's Issues

rockPaperScissors + mocha & chai

File: rockPaperScissors.js

module.exports = function (a, b) {
    if (a === b) {
        return 0;
    }
    if ((a === 'rock' && b === 'scissors') ||
        (a === 'paper' && b === 'rock') ||
        (a === 'scissors' && b === 'paper')) {
        return 1;
    }
    return -1;
};

File: rockPaperScissors.spec.js

var rockPaperScissors = require('./rockPaperScissors.js');
var expect = require('chai').expect;

describe.only('rockPaperScissors', function () {
    it('should be a function', function () {
        expect(rockPaperScissors).to.be.a('function');
    });

    describe('player \'a\' winning', function () {
        it('should return 1 when receiving \'rock\', \'scissors\'', function () {
            expect(rockPaperScissors('rock', 'scissors')).to.equal(1);
        });

        it('should return 1 when receiving \'paper\', \'rock\'', function () {
            expect(rockPaperScissors('paper', 'rock')).to.equal(1);
        });

        it('should return 1 when receiving \'scissors\', \'paper\'', function () {
            expect(rockPaperScissors('scissors', 'paper')).to.equal(1);
        });
    });

    describe('player \'a\' losing', function () {
        it('should return -1 when receiving \'rock\', \'paper\'', function () {
            expect(rockPaperScissors('rock', 'paper')).to.equal(-1);
        });

        it('should return -1 when receiving \'paper\', \'scissors\'', function () {
            expect(rockPaperScissors('paper', 'scissors')).to.equal(-1);
        });

        it('should return -1 when receiving \'scissors\', \'rock\'', function () {
            expect(rockPaperScissors('scissors', 'rock')).to.equal(-1);
        });
    });

    describe('ties', function () {
        it('should return 0 when receiving \'rock\', \'rock\'', function () {
            expect(rockPaperScissors('rock', 'rock')).to.equal(0);
        });

        it('should return 0 when receiving \'paper\', \'paper\'', function () {
            expect(rockPaperScissors('paper', 'paper')).to.equal(0);
        });

        it('should return 0 when receiving \'scissors\', \'scissors\'', function () {
            expect(rockPaperScissors('scissors', 'scissors')).to.equal(0);
        });
    });
});

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.