wx-compiler/node/test/demo.test.js
2023-06-07 20:23:39 +08:00

8 lines
233 B
JavaScript

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