forked from enviPath/enviPy
Current Dev State
This commit is contained in:
18
static/js/ketcher2/node_modules/fast-deep-equal/spec/index.spec.js
generated
vendored
Normal file
18
static/js/ketcher2/node_modules/fast-deep-equal/spec/index.spec.js
generated
vendored
Normal file
@ -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