Concorda / concorda-dashboard

concorda dashboard
MIT License
5 stars 8 forks source link

npm test portability #184

Closed feugy closed 8 years ago

feugy commented 8 years ago

When using npm test on windows, it fails due to lack of glob expression support. You can use lab's pattern to get the equivalent:

  "scripts": {
    "test": "lab test --pattern \.test -r console -v -L -m 3000",

lab automatically adds the .js suffix, and consider the parameter as a regular expression on the file name.

mirceaalexandru commented 8 years ago

changed to use env variables, script removed.