forked from karma-runner/karma-phantomjs-launcher
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
When the phantomjs npm module is installed it includes the phantomjs binary native to the OS. Using this binary allows Karma to launch tests via PhantomJS "out of the box," without the need for users to install PhantomJS manually or worry about configuring the path to their PhantomJS executable. Users are still free to install their own copy of PhantomJS and override the PHANTOMJS_BIN environment variable. Closes karma-runner#1
- Loading branch information
Showing
3 changed files
with
8 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
node_modules | ||
.idea/* |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -16,7 +16,9 @@ | |
"phantomjs" | ||
], | ||
"author": "Vojta Jina <[email protected]>", | ||
"dependencies": {}, | ||
"dependencies": { | ||
"phantomjs": "~1.8" | ||
}, | ||
"peerDependencies": { | ||
"karma": "~0.9" | ||
}, | ||
|