gulpjs / glob-stream

Readable streamx interface over anymatch.
MIT License
178 stars 53 forks source link

Flakey tests #89

Closed phated closed 7 years ago

phated commented 7 years ago

The tests seem to be a bit flakey. Things like globbing order, etc. These issues can probably be cleaned up.

phated commented 7 years ago

Anyone want to take a stab at this? I'm pretty sure most of them are due to array sorting and can probably be rewritten to use

expect(arr).toInclude(expected[0]);
expect(arr).toInclude(expected[1]);
expect(arr).toInclude(expected[2]);