Skip to content

Commit

Permalink
Add tests for angular 1.3.14 and 1.4.0-beta.5
Browse files Browse the repository at this point in the history
  • Loading branch information
artch committed Mar 12, 2015
1 parent 60bf2ec commit 66f3ce7
Show file tree
Hide file tree
Showing 3 changed files with 29 additions and 5 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ Or use this CDN link (thanks to [cdnjs.com](http://cdnjs.com)):
<script src="//cdnjs.cloudflare.com/ajax/libs/angular-route-segment/1.3.0/angular-route-segment.min.js"></script>
```

Tested with AngularJS 1.1.5, 1.2.21 and 1.3.0-rc.3.
Tested with AngularJS 1.1.5, 1.2.21, 1.3.14, and 1.4.0-beta.5.

Overview
--------
Expand Down
8 changes: 4 additions & 4 deletions karma-angular-1.3.conf.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,10 @@ module.exports = function(config) {
files: [
'test/lib/jquery.min.js',
'test/lib/helpers.js',
'https://ajax.googleapis.com/ajax/libs/angularjs/1.3.0-rc.3/angular.js',
'https://ajax.googleapis.com/ajax/libs/angularjs/1.3.0-rc.3/angular-route.js',
'https://ajax.googleapis.com/ajax/libs/angularjs/1.3.0-rc.3/angular-animate.js',
'https://ajax.googleapis.com/ajax/libs/angularjs/1.3.0-rc.3/angular-mocks.js',
'https://ajax.googleapis.com/ajax/libs/angularjs/1.3.14/angular.js',
'https://ajax.googleapis.com/ajax/libs/angularjs/1.3.14/angular-route.js',
'https://ajax.googleapis.com/ajax/libs/angularjs/1.3.14/angular-animate.js',
'https://ajax.googleapis.com/ajax/libs/angularjs/1.3.14/angular-mocks.js',
'src/**/*.js',
'test/unit/**/*.js'
],
Expand Down
24 changes: 24 additions & 0 deletions karma-angular-1.4.conf.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
module.exports = function(config) {
config.set({

basePath: './',

frameworks: ["jasmine"],

files: [
'test/lib/jquery.min.js',
'test/lib/helpers.js',
'https://ajax.googleapis.com/ajax/libs/angularjs/1.4.0-beta.5/angular.js',
'https://ajax.googleapis.com/ajax/libs/angularjs/1.4.0-beta.5/angular-route.js',
'https://ajax.googleapis.com/ajax/libs/angularjs/1.4.0-beta.5/angular-animate.js',
'https://ajax.googleapis.com/ajax/libs/angularjs/1.4.0-beta.5/angular-mocks.js',
'src/**/*.js',
'test/unit/**/*.js'
],

autoWatch: true,

browsers: ['PhantomJS']

});
};

0 comments on commit 66f3ce7

Please sign in to comment.