We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c5b0fc1 commit b9fc584Copy full SHA for b9fc584
e2e/index.e2e.ts
@@ -848,10 +848,10 @@ describe('TypeFactoryInterface', () => {
848
BookFactory.resetSequence();
849
850
// Passing input fields allows overriding the default field.
851
- const book2 = await BookFactory.buildList(2, {
+ const books2 = await BookFactory.buildList(2, {
852
title: 'ゆゆ式 100巻',
853
});
854
- expect(book2).toStrictEqual([
+ expect(books2).toStrictEqual([
855
{
856
id: 'Book-0',
857
@@ -863,7 +863,7 @@ describe('TypeFactoryInterface', () => {
863
author: undefined,
864
},
865
]);
866
- expectTypeOf(book2).toEqualTypeOf<
+ expectTypeOf(books2).toEqualTypeOf<
867
868
id: string;
869
title: string;
0 commit comments