Skip to content

Commit

Permalink
feat(tests) changing two specs
Browse files Browse the repository at this point in the history
  • Loading branch information
Pierre-Narcisi committed Mar 14, 2024
1 parent f95104f commit 780aa24
Show file tree
Hide file tree
Showing 3 changed files with 28 additions and 24 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
import { MultiSelectComponent } from './multiselect.component';

describe('SelectSearchComponent', () => {
it('show component', () => {
cy.mount(MultiSelectComponent, {
componentProperties: {},
imports: [],
declarations: [],
providers: [],
});
});
});

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,22 @@
// constructor(){}
// }

import { TaxonomyComponent } from './taxonomy.component';

describe('TaxonomyComponent', () => {

it('show component', () => {

cy.mount(TaxonomyComponent, {
componentProperties: {},
imports: [],
declarations: [],
providers: [],
});
});
});


// describe('TaxonomyComponent', () => {
// let component: TaxonomyComponent;
// let fixture: ComponentFixture<TaxonomyComponent>;
Expand Down

0 comments on commit 780aa24

Please sign in to comment.