Skip to content

Commit

Permalink
fix for process not available in browser when used via browserify. C…
Browse files Browse the repository at this point in the history
…loses #28
  • Loading branch information
logicalparadox committed Feb 28, 2012
1 parent 7097b60 commit 00ed5a7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion index.js
@@ -1,3 +1,3 @@
module.exports = process.env.CHAI_COV
module.exports = (process && process.env && process.env.CHAI_COV)
? require('./lib-cov/chai')
: require('./lib/chai');

0 comments on commit 00ed5a7

Please sign in to comment.