File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -13,15 +13,15 @@ describe("get-component-meta", () => {
13
13
}
14
14
} )
15
15
16
- test ( "parse NormalScript fresh parse" , ( ) => {
16
+ test ( "parse NormalScript fresh parse" , { timeout : 10000 } , ( ) => {
17
17
const meta = getComponentMeta ( "components/NormalScript.vue" , {
18
18
rootDir,
19
19
} )
20
20
expect ( meta . props . length ) . toEqual ( 4 ) ;
21
21
expect ( ( meta as unknown as Record < string , unknown > ) . cachedAt ) . toBeUndefined ( ) ;
22
22
} ) ;
23
23
24
- test ( "parse NormalScript fresh parse (cache enabled)" , ( ) => {
24
+ test ( "parse NormalScript fresh parse (cache enabled)" , { timeout : 10000 } , ( ) => {
25
25
const meta = getComponentMeta ( "components/NormalScript.vue" , {
26
26
rootDir,
27
27
cache : true
@@ -30,7 +30,7 @@ describe("get-component-meta", () => {
30
30
expect ( ( meta as unknown as Record < string , unknown > ) . cachedAt ) . toBeUndefined ( ) ;
31
31
} ) ;
32
32
33
- test ( "parse NormalScript cached" , ( ) => {
33
+ test ( "parse NormalScript cached" , { timeout : 10000 } , ( ) => {
34
34
const meta = getComponentMeta ( "components/NormalScript.vue" , {
35
35
rootDir,
36
36
cache : true
You can’t perform that action at this time.
0 commit comments