diff options
author | Stas Vilchik <vilchiks@gmail.com> | 2015-08-24 13:50:18 +0200 |
---|---|---|
committer | Stas Vilchik <vilchiks@gmail.com> | 2015-08-26 10:12:03 +0200 |
commit | 223bcb955ba554be354f6b4b1ca0c1acb9431d66 (patch) | |
tree | c055f39d1cf688974d275877c5ff07490c32295f /server/sonar-web/test/medium/computation.spec.js | |
parent | 4fa812ee4cb69d00e761b7887fdd30820d6748a9 (diff) | |
download | sonarqube-223bcb955ba554be354f6b4b1ca0c1acb9431d66.tar.gz sonarqube-223bcb955ba554be354f6b4b1ca0c1acb9431d66.zip |
use the single web app
Diffstat (limited to 'server/sonar-web/test/medium/computation.spec.js')
-rw-r--r-- | server/sonar-web/test/medium/computation.spec.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/server/sonar-web/test/medium/computation.spec.js b/server/sonar-web/test/medium/computation.spec.js index 4884204fbf1..b6fa2c501fe 100644 --- a/server/sonar-web/test/medium/computation.spec.js +++ b/server/sonar-web/test/medium/computation.spec.js @@ -8,7 +8,7 @@ define(function (require) { .open() .mockFromFile('/api/computation/queue', 'computation-spec/queue.json') .mockFromFile('/api/computation/history', 'computation-spec/history.json') - .startApp('computation', { urlRoot: '/test/medium/base.html' }) + .startApp('computation/app') .checkElementCount('#computation-list li[data-id]', 1) .checkElementInclude('#computation-list', 'SonarQube') .checkElementInclude('#computation-list-footer', '1') @@ -27,7 +27,7 @@ define(function (require) { .open('#past') .mockFromFile('/api/computation/queue', 'computation-spec/queue.json') .mockFromFile('/api/computation/history', 'computation-spec/history-big-1.json') - .startApp('computation', { urlRoot: '/test/medium/base.html' }) + .startApp('computation/app') .checkElementCount('#computation-list li[data-id]', 2) .clearMocks() .mockFromFile('/api/computation/history', 'computation-spec/history-big-2.json', { data: { p: 2 } }) |