Skip to content

Commit

Permalink
Global install isn't working properly yet; update readme
Browse files Browse the repository at this point in the history
  • Loading branch information
bterlson committed Nov 17, 2014
1 parent 80c6b33 commit 21cb8a2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@
An experimental Node-based test262 harness. Once this harness has stabilized, I plan to push to include it by default in official test262.

## Quick Start
1. `npm install -g test262-harness`
2. `test262-harness glob/of/test262/files/to/run`
1. `npm install test262-harness`
2. `./node_modules/.bin/test262-harness glob/of/test262/tests/to/run`

If you need the official test262 collateral:

Expand Down

2 comments on commit 21cb8a2

@domenic
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Weird, why?

@bterlson
Copy link
Owner Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I need to somehow require('test262-harness') from the globally installed CLI and have it require the local installed version (eg. so it returns the same module as require('test262-harness') from your config file). I should probably just use some NPM module for this, or see how Grunt/Gulp do it.

Please sign in to comment.