/usr/lib/nodejs/fast-deep-equal/spec/index.spec.js is in node-fast-deep-equal 1.0.0-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 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);
});
});
});
});
});
|