Skip to content

Commit

Permalink
Merge pull request catdad#54 from catdad/update-dependencies
Browse files Browse the repository at this point in the history
updating dependencies
  • Loading branch information
catdad committed Jul 8, 2020
2 parents 5d1539a + ab4a6b4 commit 2b3c2bc
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 3 deletions.
3 changes: 1 addition & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -34,15 +34,14 @@
"mocha": "^6.2.2",
"node-stream": "^1.7.0",
"symlink-dir": "^3.1.1",
"touch": "^3.1.0",
"unstyle": "^0.1.0",
"xvfb-maybe": "^0.2.1"
},
"dependencies": {
"chalk": "^3.0.0",
"import-from": "^3.0.0",
"runtime-required": "^1.0.2",
"watchboy": "^0.4.1"
"watchboy": "^0.4.2"
},
"keywords": [
"electron",
Expand Down
6 changes: 5 additions & 1 deletion test/integration.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,17 @@ const { PassThrough } = require('stream');
const { spawn } = require('child_process');
const ns = require('node-stream');
const unstyle = require('unstyle');
const touch = require('touch');
const symlink = require('symlink-dir');
const { expect } = require('chai');

describe('integration', () => {
let stdout;

const touch = async file => {
const content = await fs.readFile(file);
await fs.writeFile(file, content);
};

const wrap = stream => {
return stream
.pipe(unstyle())
Expand Down

0 comments on commit 2b3c2bc

Please sign in to comment.