You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
demo-graphql-oauth/src/User/UserResolver.spec.ts

22 lines
456 B

import { callSchema } from "../callSchema";
const usersQuery = `
query {
users {
id
}
}`
describe("user resolver", () => {
it("should return an empty array when no users are in sample", async () => {
const response = await callSchema({
source: usersQuery,
})
expect(response).toMatchObject({
data: {
users: [],
},
})
})
})