Skip to content

Commit

Permalink
update npm dev dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
Oleksandr Savchenko committed Dec 16, 2015
1 parent 038af03 commit 695a7bf
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 11 deletions.
17 changes: 9 additions & 8 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,9 @@
"homepage": "https://github.com/BernardoSilva/angular-truncate-2",
"author": "Bernardo Silva",
"contributors": [{
"name": "Community",
"url": "https://github.com/BernardoSilva/angular-truncate-2/graphs/contributors"
}
"name": "Community",
"url": "https://github.com/BernardoSilva/angular-truncate-2/graphs/contributors"
}
],
"main": "src/angular-truncate-2.js",
"repository": {
Expand All @@ -23,12 +23,13 @@
"coveralls": "^2.11.2",
"grunt": ">= 0.4.0",
"grunt-contrib-concat": "^0.5.0",
"grunt-contrib-jshint": "^0.10.0",
"grunt-contrib-jshint": "^0.11.0",
"grunt-contrib-uglify": "*",
"karma": "~0.10",
"karma-chrome-launcher": "^0.1.4",
"karma-coverage": "^0.3.1",
"karma-jasmine": "~0.1.5"
"karma": "~0.13",
"karma-chrome-launcher": "^0.2.2",
"karma-coverage": "^0.5.3",
"karma-jasmine": "~0.3.6",
"jasmine-core": "^2.4.1"
},
"scripts": {
"test": "karma start karma.conf.js --single-run",
Expand Down
6 changes: 3 additions & 3 deletions test/filtersSpec.js
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ describe('truncate', function () {
});

it('should fail', function () {
expect(characterFilter(null, 30)).toNotEqual('1234567890');
expect(characterFilter(null, 30)).not.toEqual('1234567890');
});

it('should not trim these down', function () {
Expand Down Expand Up @@ -74,7 +74,7 @@ describe('truncate', function () {
});

it('should fail', function () {
expect(wordFilter(null, 30)).toNotEqual('1234567890');
expect(wordFilter(null, 30)).not.toEqual('1234567890');
});

it('should not trim these down', function () {
Expand Down Expand Up @@ -127,7 +127,7 @@ describe('truncate', function () {
});

it('should fail', function () {
expect(characterFilter(null, 30)).toNotEqual('1234567890');
expect(characterFilter(null, 30)).not.toEqual('1234567890');
});

it('should not trim these down', function () {
Expand Down

0 comments on commit 695a7bf

Please sign in to comment.