mirror of
https://github.com/aleleba/create-node-ts-graphql-server.git
synced 2025-06-20 04:48:24 -06:00
PR-225707: updating packages.
This commit is contained in:
@ -5,7 +5,7 @@ describe('global server tests', () => {
|
||||
beforeEach(() => {
|
||||
request = supertest(server);
|
||||
});
|
||||
test('should return Test data from test Query', async () => {
|
||||
it('should return Test data from test Query', async () => {
|
||||
const bodyResponse = {
|
||||
data: {
|
||||
test: { test: 'This is the text response for Test Query from a model' }
|
||||
@ -18,7 +18,7 @@ describe('global server tests', () => {
|
||||
expect(response.body).toEqual(bodyResponse);
|
||||
});
|
||||
|
||||
test('should return Test data from test Mutation', async () => {
|
||||
it('should return Test data from test Mutation', async () => {
|
||||
const bodyResponse = {
|
||||
data: {
|
||||
testMutation: {
|
||||
|
Reference in New Issue
Block a user