blob: a51decd9b23f03a1a2408677815cce09e5227201 (
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();
});
|