@dillonkearns/elm-graphql
Version:
<img src="https://cdn.jsdelivr.net/gh/martimatix/logo-graphqelm/logo.svg" alt="dillonearns/elm-graphql logo" width="40%" align="right">
19 lines (15 loc) • 426 B
JavaScript
;
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);
});
});
});
});
});