Skip to content

Commit

Permalink
Fixed typo in test
Browse files Browse the repository at this point in the history
  • Loading branch information
rladdusaw committed Dec 13, 2019
1 parent cec82e0 commit 06fcc35
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion karma.conf.js
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,7 @@ module.exports = function (config) {

frameworks: ['jasmine'],

browsers: ['Chrome', 'Firefox'],
browsers: ['ChromeHeadless', 'Firefox'],

plugins: [
'karma-chrome-launcher',
Expand Down
6 changes: 3 additions & 3 deletions tests/unit/controllers/activeSprintsControlerTest.js
Original file line number Diff line number Diff line change
Expand Up @@ -101,9 +101,9 @@ describe('controller: ActiveSprintsController', function () {
});

it('getPanelClass should return correct value', function() {
var featureClass = scope.getPannelClass('Feature');
var defectClass = scope.getPannelClass('Defect');
var otherClass = scope.getPannelClass('anything else');
var featureClass = scope.getPanelClass('Feature');
var defectClass = scope.getPanelClass('Defect');
var otherClass = scope.getPanelClass('anything else');
expect(featureClass).toEqual('panel-primary');
expect(defectClass).toEqual('panel-danger');
expect(otherClass).toEqual('panel-default');
Expand Down

0 comments on commit 06fcc35

Please sign in to comment.