ember-cli-qunit
Advanced tools
Comparing version 0.3.9 to 0.3.10
@@ -13,5 +13,5 @@ module.exports = { | ||
{ name: 'ember-qunit-notifications', target: '0.0.7' }, | ||
{ name: 'ember-qunit', target: '0.2.8' } | ||
{ name: 'ember-qunit', target: '0.3.1' } | ||
]); | ||
} | ||
}; |
{ | ||
"name": "ember-cli-qunit", | ||
"version": "0.3.9", | ||
"version": "0.3.10", | ||
"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' }); | ||
QUnit.config.urlConfig.push({ id: 'nocontainer', label: 'Hide container'}); | ||
QUnit.config.urlConfig.push({ id: 'nojshint', label: 'Disable JSHint'}); | ||
QUnit.config.urlConfig.push({ id: 'doccontainer', label: 'Doc test pane'}); | ||
@@ -18,3 +19,5 @@ if (QUnit.notifications) { | ||
var containerVisibility = QUnit.urlParams.nocontainer ? 'hidden' : 'visible'; | ||
var containerPosition = QUnit.urlParams.doccontainer ? 'absolute' : 'relative'; | ||
document.getElementById('ember-testing-container').style.visibility = containerVisibility; | ||
document.getElementById('ember-testing-container').style.position = containerPosition; | ||
}); |
Sorry, the diff of this file is not supported yet
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
6767
174