ember-cli-qunit
Advanced tools
Comparing version 0.3.10 to 0.3.11
{ | ||
"name": "ember-cli-qunit", | ||
"version": "0.3.10", | ||
"version": "0.3.11", | ||
"description": "QUnit testing package for ember-cli applications", | ||
@@ -5,0 +5,0 @@ "main": "index.js", |
/* globals jQuery,QUnit */ | ||
QUnit.config.autostart = false; | ||
QUnit.config.urlConfig.push({ id: 'nocontainer', label: 'Hide container'}); | ||
@@ -5,0 +4,0 @@ QUnit.config.urlConfig.push({ id: 'nojshint', label: 'Disable JSHint'}); |
@@ -16,6 +16,12 @@ /* globals jQuery,QUnit */ | ||
var autostart = QUnit.config.autostart !== false; | ||
QUnit.config.autostart = false; | ||
setTimeout(function() { | ||
TestLoader.load(); | ||
QUnit.start(); | ||
if (autostart) { | ||
QUnit.start(); | ||
} | ||
}, 250); | ||
}); |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
6852
177