mirror of
https://github.com/msojocs/wx-compiler.git
synced 2025-07-19 00:00:04 +08:00
8 lines
215 B
TypeScript
8 lines
215 B
TypeScript
import assert from "assert";
|
|
import { describe } from "mocha";
|
|
|
|
describe('Demo', () => {
|
|
it('should return -1 when the value is not present', function() {
|
|
assert.equal(-1, [1,2,3].indexOf(4));
|
|
});
|
|
}) |