Skip to content

Commit

Permalink
chore(tests): enable all tests (#4217)
Browse files Browse the repository at this point in the history
  • Loading branch information
anotherchrisberry authored Oct 4, 2017
1 parent ee2637c commit 0dc9754
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion app/scripts/modules/core/src/naming/naming.service.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ describe('namingService', function () {
expect(this.namingService.getClusterName('app', 'cluster', 'details-withdash')).toBe('app-cluster-details-withdash');
});

fit('returns sequence if found, else null', function () {
it('returns sequence if found, else null', function () {
expect(this.namingService.getSequence(0)).toBe('v000');
expect(this.namingService.getSequence(10)).toBe('v010');
expect(this.namingService.getSequence(100)).toBe('v100');
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -40,9 +40,9 @@ describe('Controller: deletePipelineModal', function() {

beforeEach(function() {
this.pipelines = [
{name: 'a', index: 0},
{name: 'b', index: 1},
{name: 'c', index: 2}
{name: 'a', index: 0, id: 'A'},
{name: 'b', index: 1, id: 'B'},
{name: 'c', index: 2, id: 'C'}
];

this.application.pipelineConfigs.activate();
Expand Down

0 comments on commit 0dc9754

Please sign in to comment.