en.javascript.info/1-js/03-code-quality/05-testing-mocha/pow-full.view/test.js
2018-12-10 10:24:20 -03:00

26 lines
521 B
JavaScript

describe("pow", function() {
describe("raises x to power 3", function() {
function makeTest(x) {
let expected = x * x * x;
it(`${x} in the power 3 is ${expected}`, function() {
assert.equal(pow(x, 3), expected);
});
}
for (let x = 1; x <= 5; x++) {
makeTest(x);
}
});
it("if n is negative, the result is NaN", function() {
assert.isNaN(pow(2, -1));
});
it("if n is not integer, the result is NaN", function() {
assert.isNaN(pow(2, 1.5));
});
});