7 lines
No EOL
135 B
JavaScript
Executable file
7 lines
No EOL
135 B
JavaScript
Executable file
describe("pow", function() {
|
|
|
|
it("возводит в n-ю степень", function() {
|
|
assert.equal( pow(2, 3), 8);
|
|
});
|
|
|
|
}); |