forked from tastejs/todomvc
-
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.
Incorrect paths in the testacular.conf.js file prevented the tests from running. Also, updated package.json to use karma instead of testacular (project was renamed)
- Loading branch information
Showing
2 changed files
with
13 additions
and
12 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
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 |
---|---|---|
@@ -1,12 +1,13 @@ | ||
{ | ||
"name": "todomvc-angular-tests", | ||
"description": "Unit tests for the AngularJS example of TodoMVC", | ||
"author": "Pascal Hartig <phartig@rdrei.net>", | ||
"version": "1.0.0", | ||
"devDependencies": { | ||
"testacular": "~ 0.4.0" | ||
}, | ||
"scripts": { | ||
"test": "testacular start config/testacular.conf.js" | ||
} | ||
"name": "todomvc-angular-tests", | ||
"description": "Unit tests for the AngularJS example of TodoMVC", | ||
"author": "Pascal Hartig <phartig@rdrei.net>", | ||
"version": "1.0.0", | ||
"devDependencies": { | ||
"karma": "~0.8.5" | ||
}, | ||
"scripts": { | ||
"test": "karma start config/testacular.conf.js" | ||
}, | ||
"dependencies": {} | ||
} |