We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent aedf773 commit cafead6Copy full SHA for cafead6
tests/data/faker.ts
@@ -15,5 +15,5 @@ export const updateUserData = (userId: number): IUser => {
15
gender: faker.person.sexType(),
16
email: faker.internet.email(),
17
status: 'active'
18
- }
+ };
19
};
tests/payload/mutation.ts
@@ -1,4 +1,4 @@
1
-import { IUser, IUserOmittedID } from "../types/users";
+import { IUser, IUserOmittedID } from '../types/users';
2
3
export const createUserPayload = (data: IUserOmittedID) => {
4
return `mutation {
0 commit comments