Skip to content

Commit

Permalink
chore: rename to Karma
Browse files Browse the repository at this point in the history
  • Loading branch information
vojtajina committed Mar 19, 2013
1 parent f44ff5e commit 55196fa
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 11 deletions.
4 changes: 2 additions & 2 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
Please see the [Contributing to Testacular] guide for information on contributing to this project.
Please see the [Contributing to Karma] guide for information on contributing to this project.

[Contributing to Testacular]: https://github.com/testacular/testacular/blob/master/CONTRIBUTING.md
[Contributing to Karma]: https://github.com/karma-runner/karma/blob/master/CONTRIBUTING.md
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
# testacular-phantomjs-launcher
# karma-phantomjs-launcher

> Launcher for PhantomJS.
For more information on Testacular see the [homepage].
For more information on Karma see the [homepage].


[homepage]: http://testacular.github.com
[homepage]: http://karma-runner.github.com
2 changes: 1 addition & 1 deletion index.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ var PhantomJSBrowser = function(baseBrowserDecorator) {
baseBrowserDecorator(this);

this._start = function(url) {
// create the js file, that will open testacular
// create the js file, that will open karma
var captureFile = this._tempDir + '/capture.js';
var captureCode = '(new WebPage()).open("' + url + '");';
fs.writeFileSync(captureFile, captureCode);
Expand Down
10 changes: 5 additions & 5 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,24 +1,24 @@
{
"name": "testacular-phantomjs-launcher",
"name": "karma-phantomjs-launcher",
"version": "0.0.1",
"description": "A Testacular plugin. Launcher for PhantomJS.",
"description": "A Karma plugin. Launcher for PhantomJS.",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git://github.com/testacular/testacular-phantomjs-launcher.git"
"url": "git://github.com/karma-runner/karma-phantomjs-launcher.git"
},
"keywords": [
"testacular-plugin",
"karma-plugin",
"launcher",
"phantomjs"
],
"author": "Vojta Jina <[email protected]>",
"dependencies": {},
"peerDependencies": {
"testacular": "~0.7"
"karma": "~0.9"
},
"license": "MIT"
}

0 comments on commit 55196fa

Please sign in to comment.