blob: fa334814fc728eaafa18d786f05f85966ac84d0a (
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(styles, 'styles are defined');
t.done();
});
|