Remove dependenceis and use unpkg

This commit is contained in:
Rachel Fenichel
2019-01-08 11:41:57 -08:00
parent 35f05ce582
commit ecb8b4fb44
3 changed files with 3 additions and 5 deletions

View File

@@ -34,7 +34,6 @@
"gulp-series": "^1.0.2",
"gulp-shell": "^0.6.5",
"jshint": "^2.9.7",
"mocha": "^5.2.0",
"webdriverio": "^4.14.1"
},
"jshintConfig": {
@@ -52,7 +51,6 @@
"unused": true
},
"dependencies": {
"jsdom": "^13.0.0",
"sinon": "^7.2.0"
"jsdom": "^13.0.0"
}
}

View File

@@ -2,7 +2,7 @@
// Declare some globals to make eslint happier.
// TODO: make an eslint config that applies to this directory and put this
// configuration in that file, instead of inline.
/* global suite, test, chai, setup, teardown */
/* global suite, test, setup, teardown */
/* global sinon */
/* global assertNotNull, assertNotUndefined, assertNull, assertEquals, isEqualArrays, assertUndefined */

View File

@@ -12,7 +12,7 @@
<div id="mocha"></div>
<script src="https://unpkg.com/chai/chai.js"></script>
<script src="https://unpkg.com/mocha@5.2.0/mocha.js"></script>
<script src="../../node_modules/sinon/pkg/sinon.js"></script>
<script src="https://unpkg.com/sinon/pkg/sinon.js"></script>
<script>
mocha.setup({
ui: 'tdd'