Skip to content

Commit

Permalink
Support Node.js 10
Browse files Browse the repository at this point in the history
  • Loading branch information
realityking committed Aug 5, 2018
1 parent de03b85 commit 607e448
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 1 deletion.
1 change: 1 addition & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ language: node_js
node_js:
- 6
- 8
- 10

matrix:
fast_finish: true
1 change: 1 addition & 0 deletions appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ environment:
matrix:
- nodejs_version: 6
- nodejs_version: 8
- nodejs_version: 10

version: "{build}"
build: off
Expand Down
2 changes: 1 addition & 1 deletion test/setup.js
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ function compareFixtures(name, msg, opts, postcssOpts, plugin) {
const expected = read(`fixtures/${name}.expected`);

// handy thing: checkout actual in the *.actual.css file
fs.writeFile(`test/fixtures/${name}.actual.css`, actual);
fs.writeFile(`test/fixtures/${name}.actual.css`, actual, () => {});

assert.equal(actual, expected);
});
Expand Down

0 comments on commit 607e448

Please sign in to comment.