blob: b2773ee19162bc620dfc2967f17af66c4eeafae0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
StartTest(function (t) {
t.diag("Sanity");
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(Strings, 'Strings are defined');
t.ok(Traccar.Styles, 'Traccar.Styles are defined');
t.done();
});
|