diff options
Diffstat (limited to 'web/tests/010_sanity.t.js')
-rw-r--r-- | web/tests/010_sanity.t.js | 15 |
1 files changed, 8 insertions, 7 deletions
diff --git a/web/tests/010_sanity.t.js b/web/tests/010_sanity.t.js index 9d5636493..a51decd9b 100644 --- a/web/tests/010_sanity.t.js +++ b/web/tests/010_sanity.t.js @@ -1,13 +1,14 @@ -// also supports: startTest(function(t) { StartTest(function(t) { t.diag("Sanity"); - t.ok(Ext, 'ExtJS is here'); - t.ok(Ext.Window, '.. indeed'); + t.ok(Ext, 'Ext is defined'); + t.ok(Ext.Window, 'Ext.Window is defined'); + t.ok(Traccar, 'Traccar is defined'); + t.ok(Traccar.Application, 'Traccar.Application is defined'); - t.ok(Your.Project, 'My project is here'); - t.ok(Your.Project.Util, '.. indeed'); + t.ok(strings, 'strings are defined'); + t.ok(styles, 'styles are defined'); - t.done(); // Optional, marks the correct exit point from the test -}) + t.done(); +}); |