Files
startusingdocker/compose/test/test.js
Guillem Hernandez Sola 75f631d93f Move composed to a folder
2018-06-13 11:44:39 +02:00

9 lines
233 B
JavaScript
Executable File

var assert = require('assert');
describe('Array', function() {
describe('#indexOf()', function() {
it('should return -1 when the value is not present', function() {
assert.equal(-1, [1,2,3].indexOf(4));
});
});
});