Files
NativeScript/node-tests/test-xml.ts
Hristo Deshev c05efb1614 Start nodejs test suite to avoid testing non-UI stuff with a real device.
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.
2015-06-17 15:53:11 +03:00

8 lines
119 B
TypeScript

import {assert} from "chai";
describe("test", () => {
it("dummy", () => {
assert.equal(1, 2);
});
});