@@ -12,7 +12,7 @@ const toOutputPath = (name: string) =>
12
12
path . resolve ( __dirname , 'generated' , name ) ;
13
13
14
14
describe ( 'performance' , ( ) => {
15
- it ( 'creates client under 1000ms ' , async ( ) => {
15
+ it ( 'creates client under 1500ms ' , async ( ) => {
16
16
Performance . clear ( ) ;
17
17
18
18
await createClient ( {
@@ -27,10 +27,10 @@ describe('performance', () => {
27
27
Performance . measure ( 'createClient' ) ;
28
28
const measures = Performance . getEntriesByName ( 'createClient' ) ;
29
29
30
- expect ( measures [ 0 ] ! . duration ) . toBeLessThanOrEqual ( 1000 ) ;
30
+ expect ( measures [ 0 ] ! . duration ) . toBeLessThanOrEqual ( 1500 ) ;
31
31
} ) ;
32
32
33
- it ( 'parses spec under 1000ms ' , async ( ) => {
33
+ it ( 'parses spec under 1500ms ' , async ( ) => {
34
34
Performance . clear ( ) ;
35
35
36
36
await createClient ( {
@@ -45,10 +45,10 @@ describe('performance', () => {
45
45
Performance . measure ( 'parser' ) ;
46
46
const measures = Performance . getEntriesByName ( 'parser' ) ;
47
47
48
- expect ( measures [ 0 ] ! . duration ) . toBeLessThanOrEqual ( 1000 ) ;
48
+ expect ( measures [ 0 ] ! . duration ) . toBeLessThanOrEqual ( 1500 ) ;
49
49
} ) ;
50
50
51
- it ( 'parses spec under 1000ms (experimental)' , async ( ) => {
51
+ it ( 'parses spec under 1500ms (experimental)' , async ( ) => {
52
52
Performance . clear ( ) ;
53
53
54
54
await createClient ( {
@@ -63,6 +63,6 @@ describe('performance', () => {
63
63
Performance . measure ( 'parser' ) ;
64
64
const measures = Performance . getEntriesByName ( 'parser' ) ;
65
65
66
- expect ( measures [ 0 ] ! . duration ) . toBeLessThanOrEqual ( 1000 ) ;
66
+ expect ( measures [ 0 ] ! . duration ) . toBeLessThanOrEqual ( 1500 ) ;
67
67
} ) ;
68
68
} ) ;
0 commit comments