Skip to content

Commit 9749f68

Browse files
authored
Speed up test (#120)
1 parent c507089 commit 9749f68

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/fixtures/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,4 +30,4 @@ export const longString = `${fixtureString}..`;
3030
export const fixtureMultibyteString = '\u1000';
3131
export const longMultibyteString = `${fixtureMultibyteString}\u1000`;
3232

33-
export const bigArray = Array.from({length: 1e6}, () => Math.floor(Math.random() * (2 ** 8)));
33+
export const bigArray = Array.from({length: 1e5}, () => Math.floor(Math.random() * (2 ** 8)));

0 commit comments

Comments
 (0)