1

Has anyone been able to get this to work?

Environment:

  • Windows 7 64-bit
  • node.js v0.6.7
  • npm 1.1.0-beta-10
  • expresso 0.9.2

I've successfully installed via npm from zip download (after modifying package.json to remove node-jscoverage dependence). 'npm ls' lists expresso as installed. After overcoming the problem described here by commenting out the reference to SIGINT, expresso will execute from cmd window. However, when I actually attempt to run test suites, I get a 'Cannot find module' error when it tries to open the first test suite. Any help would be appreciated.

Community
  • 1
  • 1

2 Answers2

2

You'll have to install the module locally, too.

thejh
  • 44,854
  • 16
  • 96
  • 107
  • I'll give that a try. However, the same install configuration works on Ubuntu, just not on Windows. –  Jan 11 '12 at 00:12
  • No luck - same error as before, even installed in the project directory. Thanks for the suggestion. –  Jan 11 '12 at 03:31
2

Have you considered using mocha? It's supposed to be expresso's successor, written by the same author.

fent
  • 17,861
  • 15
  • 87
  • 91
  • I've seen mocha before, but the open-source project I'm contributing to is still using expresso. –  Jan 11 '12 at 00:08