Skip to content

Commit 27018aa

Browse files
brandon93ssindresorhus
authored andcommittedDec 31, 2018
CI updates (#78)
1 parent aa29749 commit 27018aa

File tree

3 files changed

+5
-2
lines changed

3 files changed

+5
-2
lines changed
 

‎.travis.yml

+1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
os:
22
- linux
33
- osx
4+
- windows
45
language: node_js
56
node_js:
67
- '11'

‎readme.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

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

77
Works on macOS, Linux, and Windows.
88

‎test.js

+3-1
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,9 @@ test('glob', async t => {
4848
});
4949

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

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

0 commit comments

Comments
 (0)
Please sign in to comment.