diff options
Diffstat (limited to 'web/tests/index.js')
-rw-r--r-- | web/tests/index.js | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/web/tests/index.js b/web/tests/index.js index a3708d7f1..a75d6e4df 100644 --- a/web/tests/index.js +++ b/web/tests/index.js @@ -1,14 +1,14 @@ var Harness = Siesta.Harness.Browser.ExtJS; Harness.configure({ - title : 'Awesome Test Suite', - - preload : [ + title: 'Traccar Test Suite', + preload: [ '//cdnjs.cloudflare.com/ajax/libs/extjs/6.0.0/ext-all.js', - '../app.min.js' + 'locale.js', + 'app.js' ] }); Harness.start( - '010_sanity.t.js' + 'tests/010_sanity.t.js' ); |