Created
November 8, 2016 17:34
-
-
Save ronaiza-cardoso/62e602adf5fefc8d693390346b351915 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
'use strict'; | |
const Calc = require('./../Calc'); | |
const chai = require('chai'); | |
const expect = chai.expect; | |
describe('name of file - Calc', ( ) => { | |
it('description of the test - sum should return 4', (done) => { | |
let resultSum = Calc.sum( 2, 2 ); | |
expect( resultSum ).to.be.equal( 4 ); | |
done(); | |
}); | |
it('sub should return 9', (done) => { | |
let resultSub = Calc.sub( 10, 1 ); | |
expect( resultSub ).to.be.equal( 9 ); | |
done(); | |
}); | |
it('mult should return 10', (done) => { | |
let resultMult = Calc.mult( 2, 5 ); | |
expect( resultMult ).to.be.equal( 10 ); | |
done(); | |
}); | |
it('div should return 10', (done) => { | |
let resultDiv = Calc.div( 20, 2 ); | |
expect( resultDiv ).to.be.equal( 10 ); | |
done(); | |
}); | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment