Here's a snippet of what mocha gives me when running npm test on windows.
16 passing (112ms)
1 failing
1) gulp-concat concat() with object as argument should calculate relative path from cwd and path in arguments:
Error: 0 position is not passing assertion: expected 'test\\new.txt' to equal 'test/new.txt'
Obviously this is because NT file paths use the \ character instead of / for the delimiter - and the test has the delimiters hard coded as /
Here's a snippet of what mocha gives me when running
npm test
on windows.Obviously this is because NT file paths use the
\
character instead of/
for the delimiter - and the test has the delimiters hard coded as/