Skip to content

Commit

Permalink
fix: Upgrade dependencies (#111)
Browse files Browse the repository at this point in the history
  • Loading branch information
tkyi authored Jun 10, 2021
1 parent 279f9a3 commit f45a95e
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 13 deletions.
18 changes: 9 additions & 9 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -35,25 +35,25 @@
"chai": "^3.5.0",
"eslint": "^4.3.0",
"eslint-config-screwdriver": "^3.0.0",
"mocha": "^8.1.2",
"mocha": "^8.4.0",
"mocha-multi-reporters": "^1.5.1",
"mocha-sonarqube-reporter": "^1.0.2",
"nyc": "^15.0.0",
"mockery": "^2.1.0",
"sinon": "^7.2.5"
"nyc": "^15.0.0",
"sinon": "^7.5.0"
},
"dependencies": {
"@hapi/hapi": "^20.1.0",
"amqp-connection-manager": "^3.2.0",
"amqplib": "^0.7.1",
"amqp-connection-manager": "^3.2.2",
"amqplib": "^0.8.0",
"config": "^2.0.1",
"fs": "0.0.1-security",
"fs-extra": "^9.0.0",
"fs": "0.0.2",
"fs-extra": "^9.1.0",
"path": "^0.12.7",
"request": "^2.88.0",
"request": "^2.88.2",
"screwdriver-executor-k8s": "^14.3.3",
"screwdriver-executor-k8s-vm": "^4.3.0",
"screwdriver-executor-router": "^2.0.0",
"screwdriver-executor-router": "^2.1.2",
"screwdriver-logger": "^1.0.2",
"threads": "^0.12.1"
},
Expand Down
2 changes: 1 addition & 1 deletion test/cache.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ describe('Cache Test', () => {
beforeEach(function () {
mockFs = sinon.stub(fs, 'remove');
// eslint-disable-next-line global-require
cache = require('../lib/cache.js');
cache = require('../lib/cache');
});

afterEach(function () {
Expand Down
2 changes: 1 addition & 1 deletion test/helper.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ describe('Helper Test', () => {
mockery.registerMock('request', mockRequest);

// eslint-disable-next-line global-require
helper = require('../lib/helper.js');
helper = require('../lib/helper');
});

afterEach(() => {
Expand Down
4 changes: 2 additions & 2 deletions test/jobs.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ describe('Jobs Test', () => {

mockery.registerMock('screwdriver-executor-router', mockExecutorRouter);
// eslint-disable-next-line global-require
jobs = require('../lib/jobs.js');
jobs = require('../lib/jobs');
});
it('starts a job', () => {
mockExecutor.start.resolves(null);
Expand Down Expand Up @@ -148,7 +148,7 @@ describe('Jobs Test', () => {
mockery.registerMock('screwdriver-executor-router', mockExecutorRouter);

// eslint-disable-next-line global-require
jobs = require('../lib/jobs.js');
jobs = require('../lib/jobs');
});
it('starts a job with weighted executor randomly', () => {
mockExecutor.start.resolves('k8sresult');
Expand Down

0 comments on commit f45a95e

Please sign in to comment.