Skip to content
Snippets Groups Projects
Commit cbaf1a14 authored by fedoreno's avatar fedoreno
Browse files

SSDM-3519: extended timeout for a long test

SVN: 36268
parent ed19ef67
No related branches found
No related tags found
No related merge requests found
...@@ -15,7 +15,7 @@ ...@@ -15,7 +15,7 @@
require.paths["test/qunit-report"] = testPath + "/lib/qunit/js/qunit-reporter-junit"; require.paths["test/qunit-report"] = testPath + "/lib/qunit/js/qunit-reporter-junit";
require.paths["test/naturalsort"] = testPath + "/lib/naturalsort/js/naturalSort"; require.paths["test/naturalsort"] = testPath + "/lib/naturalsort/js/naturalSort";
// require.urlArgs = 'now=' + Date.now(); require.urlArgs = 'now=' + Date.now();
require.shim["test/qunit-report"] = { require.shim["test/qunit-report"] = {
deps : [ 'test/qunit' ] deps : [ 'test/qunit' ]
...@@ -29,7 +29,7 @@ ...@@ -29,7 +29,7 @@
<script> <script>
require([ 'jquery', 'test/qunit', 'test/qunit-report', 'test/main' ], function($, qunit, report, main) { require([ 'jquery', 'test/qunit', 'test/qunit-report', 'test/main' ], function($, qunit, report, main) {
qunit.config.autostart = false; qunit.config.autostart = false;
qunit.config.testTimeout = 10000; qunit.config.testTimeout = 20000;
qunit.jUnitReport = function(report) { qunit.jUnitReport = function(report) {
$("#qunit-junit-report").text(report.xml); $("#qunit-junit-report").text(report.xml);
console.log(report.xml); console.log(report.xml);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment