Skip to content

Commit eecd07c

Browse files
committed
reorg
1 parent cfdce89 commit eecd07c

File tree

9 files changed

+8
-39
lines changed

9 files changed

+8
-39
lines changed

integrationTests/dev-deno-explicit/package.json

Lines changed: 0 additions & 10 deletions
This file was deleted.

integrationTests/dev-deno-explicit/test.js

Lines changed: 0 additions & 20 deletions
This file was deleted.

integrationTests/dev-deno-condition-based/package.json renamed to integrationTests/dev-deno/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"description": "graphql-js condition-based development mode should work with Deno",
2+
"description": "graphql-js development mode should work with Deno",
33
"private": true,
44
"scripts": {
55
"test": "docker run --rm --volume \"$PWD\":/usr/src/app -w /usr/src/app denoland/deno:latest deno run --conditions=development --allow-env=NODE_ENV test.js"

integrationTests/dev-deno-condition-based/test.js renamed to integrationTests/dev-deno/test.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ class GraphQLObjectType {
99
try {
1010
isObjectType(new GraphQLObjectType());
1111
throw new Error(
12-
'Expected isObjectType to throw an error in Deno condition-based development mode.',
12+
'Expected isObjectType to throw an error in Deno development mode.',
1313
);
1414
} catch (error) {
1515
if (!error.message.includes('from another module or realm')) {

integrationTests/dev-node-explicit/package.json renamed to integrationTests/dev-explicit/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"description": "graphql-js explicit development mode should work with node",
2+
"description": "graphql-js explicit development mode should work",
33
"private": true,
44
"type": "module",
55
"scripts": {
File renamed without changes.

integrationTests/dev-node-condition-based/package.json renamed to integrationTests/dev-node/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"description": "graphql-js condition-based development mode should work with node",
2+
"description": "graphql-js development mode should work with node",
33
"private": true,
44
"type": "module",
55
"scripts": {

integrationTests/dev-node-condition-based/test.js renamed to integrationTests/dev-node/test.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ class GraphQLObjectType {
99
try {
1010
isObjectType(new GraphQLObjectType());
1111
throw new Error(
12-
'Expected isObjectType to throw an error in Node.js condition-based development mode.',
12+
'Expected isObjectType to throw an error in Node.js development mode.',
1313
);
1414
} catch (error) {
1515
if (!error.message.includes('from another module or realm')) {

resources/integration-test.ts

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -54,10 +54,9 @@ describe('Integration Tests', () => {
5454
testOnNodeProject('conditions');
5555

5656
// Development mode tests
57-
testOnNodeProject('dev-node-condition-based');
58-
testOnNodeProject('dev-node-explicit');
59-
testOnNodeProject('dev-deno-condition-based');
60-
testOnNodeProject('dev-deno-explicit');
57+
testOnNodeProject('dev-explicit');
58+
testOnNodeProject('dev-node');
59+
testOnNodeProject('dev-deno');
6160
testOnNodeProject('dev-bun');
6261
testOnNodeProject('dev-webpack');
6362
testOnNodeProject('dev-rspack');

0 commit comments

Comments
 (0)