Skip to content

Commit

Permalink
Enabling skiped tests
Browse files Browse the repository at this point in the history
  • Loading branch information
Fernando Alexandre Dias da Costa committed Oct 3, 2020
1 parent f9b597e commit 2134485
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion it/angular-jasmine/src/app/app.component.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ describe('AppComponent', () => {
expect(app).toBeTruthy();
});

xit(`should have as title 'app1'`, () => {
it(`should have as title 'app1'`, () => {
const fixture = TestBed.createComponent(AppComponent);
const app = fixture.debugElement.componentInstance;
expect(app.title).toEqual('app1');
Expand Down
2 changes: 1 addition & 1 deletion it/angular-mocha/src/app/app.component.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ describe('AppComponent', () => {
expect(app).to.be.ok;
});

it.skip(`should have as title 'app1'`, () => {
it(`should have as title 'app1'`, () => {
const fixture = TestBed.createComponent(AppComponent);
const app = fixture.debugElement.componentInstance;
expect(app.title).to.equal('app1');
Expand Down

0 comments on commit 2134485

Please sign in to comment.