14 lines
256 B
JavaScript
14 lines
256 B
JavaScript
describe("pow", 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);
|
|
}
|
|
|
|
});
|