This commit is contained in:
qwr
2023-11-10 11:29:41 +03:00
commit 6fdae3e57b
20 changed files with 2159 additions and 0 deletions

11
operations.test.js Normal file
View File

@@ -0,0 +1,11 @@
var operations = require('./operations');
it('should multiply two numbers', function () {
var expectedResult = 15;
var result = operations.multiply(3, 5);
if (result !== expectedResult) {
throw new Error(
`Expected ${expectedResult}, but got ${result}`
);
}
});