mirror of
https://github.com/msojocs/wx-compiler.git
synced 2025-07-19 00:00:04 +08:00
8 lines
233 B
JavaScript
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));
|
|
});
|
|
});
|
|
}); |