mirror of
https://github.com/10h30/odin-javascript-exercises.git
synced 2026-07-14 20:26:14 +09:00
remove timer and simon
This commit is contained in:
+18
@@ -0,0 +1,18 @@
|
||||
'use strict';
|
||||
|
||||
var equal = require('../index');
|
||||
var tests = require('./tests');
|
||||
var assert = require('assert');
|
||||
|
||||
|
||||
describe('equal', function() {
|
||||
tests.forEach(function (suite) {
|
||||
describe(suite.description, function() {
|
||||
suite.tests.forEach(function (test) {
|
||||
it(test.description, function() {
|
||||
assert.strictEqual(equal(test.value1, test.value2), test.equal);
|
||||
});
|
||||
});
|
||||
});
|
||||
});
|
||||
});
|
||||
Reference in New Issue
Block a user