File tree Expand file tree Collapse file tree 1 file changed +10
-9
lines changed
projects/testing-library/src/tests/issues Expand file tree Collapse file tree 1 file changed +10
-9
lines changed Original file line number Diff line number Diff line change 11import { Component } from '@angular/core' ;
2- import { test , expect } from 'vitest' ;
2+ import { describe , test , expect } from 'vitest' ;
33import { render , screen } from '../../public_api' ;
44
5- test ( 'should create the app' , async ( ) => {
6- await render ( FixtureComponent ) ;
7- expect ( screen . getByRole ( 'heading' ) ) . toBeInTheDocument ( ) ;
8- } ) ;
5+ describe . concurrent ( 'Issue #398 - Component with host id attribute' , ( ) => {
6+ test ( 'should create the app' , async ( ) => {
7+ await render ( FixtureComponent ) ;
8+ expect ( screen . getByRole ( 'heading' ) ) . toBeInTheDocument ( ) ;
9+ } ) ;
910
10- test ( 'should re-create the app' , async ( ) => {
11- await render ( FixtureComponent ) ;
12- expect ( screen . getByRole ( 'heading' ) ) . toBeInTheDocument ( ) ;
11+ test ( 'should re-create the app' , async ( ) => {
12+ await render ( FixtureComponent ) ;
13+ expect ( screen . getByRole ( 'heading' ) ) . toBeInTheDocument ( ) ;
14+ } ) ;
1315} ) ;
14-
1516@Component ( {
1617 selector : 'atl-fixture-398' ,
1718 standalone : true ,
You can’t perform that action at this time.
0 commit comments