diff options
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 } }) |