Skip to content

Commit

Permalink
Bump dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
sindresorhus committed Apr 1, 2017
1 parent 1a478c5 commit 414b8c0
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 2 deletions.
5 changes: 3 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -56,8 +56,9 @@
"matcha": "^0.7.0",
"mocha": "^3.2.0",
"shelljs": "^0.7.0",
"sinon": "^1.9.1",
"xo": "^0.17.1",
"sinon": "^2.1.0",
"sinon-test": "^1.0.1",
"xo": "^0.18.1",
"yeoman-assert": "^3.0.0",
"yeoman-generator": "^1.1.0"
},
Expand Down
4 changes: 4 additions & 0 deletions test/environment.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,15 @@ const fs = require('fs');
const path = require('path');
const util = require('util');
const sinon = require('sinon');
const sinonTest = require('sinon-test');
const Generator = require('yeoman-generator');
const assert = require('yeoman-assert');
const TerminalAdapter = require('../lib/adapter');
const Environment = require('../lib/environment');

sinon.test = sinonTest.configureTest(sinon);
sinon.testCase = sinonTest.configureTestCase(sinon);

describe('Environment', () => {
beforeEach(function () {
this.env = new Environment([], {'skip-install': true});
Expand Down

0 comments on commit 414b8c0

Please sign in to comment.