document unit tests

This commit is contained in:
Andrew
2015-03-19 14:35:33 -05:00
parent 71125622fa
commit 5f4b8ab26f
2 changed files with 2 additions and 1 deletions

View File

@@ -2,6 +2,7 @@
#### Test it out!
- Run `gulp watch` to build, serve, and watch Ionic & playground
- Run `gulp karma-watch` while gulp watch is running to watch tests. Unit tests run on compiled files in dist.
#### Problems already

View File

@@ -2,6 +2,6 @@ import {Ion} from '../ion';
export function main() {
it('should be true', () => {
expect(false).toBe(true);
expect(true).toBe(true);
});
}