File tree Expand file tree Collapse file tree 1 file changed +5
-3
lines changed
Expand file tree Collapse file tree 1 file changed +5
-3
lines changed Original file line number Diff line number Diff line change @@ -82,8 +82,8 @@ const isCheckerError = (object: any): object is ICheckerError =>
8282
8383const shouldSkip = ( skip ?: SkipType ) : boolean => {
8484 if ( skip ) {
85- const showcaseVal = process . env . showcase ;
86- if ( skip . angular && showcaseVal ?. startsWith ( 'angular' ) ) {
85+ const showcaseValue = process . env . showcase ;
86+ if ( skip . angular && showcaseValue ?. startsWith ( 'angular' ) ) {
8787 return true ;
8888 }
8989 }
@@ -145,7 +145,9 @@ export const getDefaultScreenshotTest = ({
145145 if ( isStencil ( showcaseEnv ) ) {
146146 // In stencil showcase, snapshot the component root or its labeled nav
147147 const wcComponent = page . locator ( 'db-breadcrumb' ) ;
148- const labeledNav = page . getByRole ( 'navigation' , { name : / b r e a d c r u m b / i } ) ;
148+ const labeledNav = page . getByRole ( 'navigation' , {
149+ name : / b r e a d c r u m b / i
150+ } ) ;
149151 if ( await wcComponent . count ( ) ) {
150152 target = wcComponent ;
151153 await expect ( target ) . toBeVisible ( { timeout : 3000 } ) ;
You can’t perform that action at this time.
0 commit comments