mirror of
https://github.com/NativeScript/NativeScript.git
synced 2025-08-15 19:26:42 +08:00

1. Place tests in ./node-tests 2. Add chai, mocha, grunt-simple-mocha dev dependencies 3. Run it all with the grunt node-tests task.
8 lines
119 B
TypeScript
8 lines
119 B
TypeScript
import {assert} from "chai";
|
|
|
|
describe("test", () => {
|
|
it("dummy", () => {
|
|
assert.equal(1, 2);
|
|
});
|
|
});
|