Skip to content
This repository has been archived by the owner on Dec 10, 2024. It is now read-only.

Commit

Permalink
Name all the things!
Browse files Browse the repository at this point in the history
  • Loading branch information
nathanhammond authored Sep 28, 2016
1 parent 5e5cfca commit d1b939c
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion index.js
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,9 @@ module.exports = {
];

var addonOptions = target.options['ember-cli-qunit'];
if (!addonOptions || addonOptions.disableContainerStyles !== true) {
var hasAddonOptions = !!addonOptions;
var explicitlyDisabledContainerStyles = hasAddonOptions && addonOptions.disableContainerStyles === true;
if (!explicitlyDisabledContainerStyles) {
fileAssets.push('vendor/ember-cli-qunit/test-container-styles.css');
}

Expand Down

0 comments on commit d1b939c

Please sign in to comment.