Skip to content

Commit cafead6

Browse files
committed
lint fix
1 parent aedf773 commit cafead6

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

tests/data/faker.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,5 +15,5 @@ export const updateUserData = (userId: number): IUser => {
1515
gender: faker.person.sexType(),
1616
email: faker.internet.email(),
1717
status: 'active'
18-
}
18+
};
1919
};

tests/payload/mutation.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { IUser, IUserOmittedID } from "../types/users";
1+
import { IUser, IUserOmittedID } from '../types/users';
22

33
export const createUserPayload = (data: IUserOmittedID) => {
44
return `mutation {

0 commit comments

Comments
 (0)