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