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.
This commit is contained in:
Hristo Deshev
2015-06-03 19:16:08 +03:00
parent 7e09183d23
commit c05efb1614
5 changed files with 445 additions and 1 deletions

7
node-tests/test-xml.ts Normal file
View File

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