Skip to content

Commit ff72d7f

Browse files
committed
upreving packages
1 parent 6a20ac3 commit ff72d7f

File tree

3 files changed

+7
-9
lines changed

3 files changed

+7
-9
lines changed

package.json

Lines changed: 6 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "tutorcruncher-socket",
3-
"version": "0.0.5",
3+
"version": "0.0.6",
44
"description": "TutorCruncher socket",
55
"author": "Samuel Colvin <[email protected]>",
66
"private": false,
@@ -29,21 +29,20 @@
2929
"babel-core": "^6.23.1",
3030
"babel-eslint": "^7.0.0",
3131
"babel-loader": "^6.4.0",
32-
"babel-plugin-istanbul": "^3.0.0",
32+
"babel-plugin-istanbul": "^4.0.0",
3333
"babel-plugin-transform-runtime": "^6.23.0",
3434
"babel-preset-es2015": "^6.22.0",
3535
"babel-preset-stage-2": "^6.22.0",
3636
"babel-register": "^6.23.0",
3737
"chai": "^3.5.0",
3838
"chalk": "^1.1.3",
3939
"cross-env": "^3.2.3",
40-
"cross-spawn": "^4.0.2",
41-
"css-loader": "^0.25.0",
40+
"css-loader": "^0.26.4",
4241
"eslint": "^3.17.1",
43-
"eslint-config-standard": "^6.1.0",
42+
"eslint-config-standard": "^7.0.1",
4443
"eslint-friendly-formatter": "^2.0.5",
4544
"eslint-loader": "^1.6.3",
46-
"eslint-plugin-html": "^1.3.0",
45+
"eslint-plugin-html": "^2.0.1",
4746
"eslint-plugin-promise": "^3.5.0",
4847
"eslint-plugin-standard": "^2.1.1",
4948
"eventsource-polyfill": "^0.9.6",
@@ -62,7 +61,7 @@
6261
"karma-phantomjs-launcher": "^1.0.0",
6362
"karma-sinon-chai": "^1.2.0",
6463
"karma-sourcemap-loader": "^0.3.7",
65-
"karma-spec-reporter": "0.0.26",
64+
"karma-spec-reporter": "0.0.30",
6665
"karma-webpack": "^1.7.0",
6766
"lodash": "^4.17.4",
6867
"lolex": "^1.6.0",

test/unit/specs/enquiry.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,4 +49,3 @@ describe('enquiry.vue', () => {
4949
expect(vm.enquiry_data).to.deep.equal({})
5050
})
5151
})
52-

test/unit/specs/main.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ describe('main.js', done => {
2424
vm.enquiry_form_info = 'foobar' // prevent get_enquiry making a GET request
2525
expect(vm.$el.parentNode.attributes['id'].value).to.equal('outer')
2626
// no time for get_data to be called so should be empty
27-
expect(vm.contractors).to.be.empty
27+
expect(vm.contractors).to.have.lengthOf(0)
2828

2929
setTimeout(() => {
3030
expect(vm.contractors).to.have.lengthOf(1)

0 commit comments

Comments
 (0)