Skip to content

Commit

Permalink
feat: update karma-qunit and switch to qunit pkg (#160)
Browse files Browse the repository at this point in the history
  • Loading branch information
brandonocasey authored Mar 26, 2018
1 parent 7736b82 commit 7c8f3dd
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions generators/app/package-json.js
Original file line number Diff line number Diff line change
Expand Up @@ -21,13 +21,13 @@ const DEFAULTS = {
'karma-detect-browsers': '^2.2.6',
'karma-firefox-launcher': '^1.1.0',
'karma-ie-launcher': '^1.0.0',
'karma-qunit': '^1.2.1',
'karma-qunit': '^2.0.0',
'karma-safari-launcher': '^1.0.0',
'mkdirp': '^0.5.1',
'node-static': '^0.7.10',
'npm-run-all': '^4.1.2',
'portscanner': '^2.1.1',
'qunitjs': '^2.4.1',
'qunit': '^2.5.1',
'rimraf': '^2.6.2',
'rollup': '^0.53.4',
'rollup-plugin-babel': '^2.7.1',
Expand Down
4 changes: 2 additions & 2 deletions generators/app/templates/test/_index.html
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<head>
<meta charset="utf-8">
<title><%= pluginName %> Unit Tests</title>
<link rel="stylesheet" href="../node_modules/qunitjs/qunit/qunit.css">
<link rel="stylesheet" href="../node_modules/qunit/qunit/qunit.css">
<link rel="stylesheet" href="../node_modules/video.js/dist/video-js.css">
<% if (sass) { -%>
<link href="../dist/<%= pluginName %>.css" rel="stylesheet">
Expand All @@ -14,7 +14,7 @@
<div id="qunit-fixture"></div>
<% if (ie8) { %><script src="../node_modules/es5-shim/es5-shim.js"></script><% } %>
<script src="../node_modules/sinon/pkg/sinon.js"></script>
<script src="../node_modules/qunitjs/qunit/qunit.js"></script>
<script src="../node_modules/qunit/qunit/qunit.js"></script>
<script src="../node_modules/video.js/dist/video.js"></script>
<script src="../test/dist/bundle.js"></script>
</body>
Expand Down

0 comments on commit 7c8f3dd

Please sign in to comment.