Skip to content

Commit

Permalink
CI updates (#78)
Browse files Browse the repository at this point in the history
  • Loading branch information
brandon93s authored and sindresorhus committed Dec 31, 2018
1 parent aa29749 commit 27018aa
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 2 deletions.
1 change: 1 addition & 0 deletions .travis.yml
@@ -1,6 +1,7 @@
os:
- linux
- osx
- windows
language: node_js
node_js:
- '11'
Expand Down
2 changes: 1 addition & 1 deletion readme.md
Expand Up @@ -2,7 +2,7 @@

> Move files and folders to the trash
[![Build Status](https://travis-ci.com/sindresorhus/trash.svg?branch=master)](https://travis-ci.com/sindresorhus/trash)
[![Build Status](https://travis-ci.org/sindresorhus/trash.svg?branch=master)](https://travis-ci.org/sindresorhus/trash)

Works on macOS, Linux, and Windows.

Expand Down
4 changes: 3 additions & 1 deletion test.js
Expand Up @@ -48,7 +48,9 @@ test('glob', async t => {
});

test('no glob', async t => {
fs.writeFileSync('fixture-noglob*.js', '');
if (process.platform !== 'win32') {
fs.writeFileSync('fixture-noglob*.js', '');
}
fs.writeFileSync('fixture-noglob1.js', '');

await trash(['fixture-noglob*.js'], {glob: false});
Expand Down

0 comments on commit 27018aa

Please sign in to comment.