Skip to content

Commit 04bbccb

Browse files
authored
Merge pull request #90 from mizdra/refactoring-e2e-tests
Refactoring E2E tests
2 parents 7178466 + 307444e commit 04bbccb

31 files changed

+71
-122
lines changed
File renamed without changes.
File renamed without changes.
File renamed without changes.

e2e/esm/codegen.ts e2e/01-esm/codegen.ts

+3-11
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,5 @@
11
import { CodegenConfig } from '@graphql-codegen/cli';
2-
3-
const defaultTypeScriptPluginConfig = {
4-
nonOptionalTypename: true,
5-
enumsAsTypes: true,
6-
avoidOptionals: true,
7-
skipTypename: true,
8-
};
9-
const defaultFabbricaPluginConfig = {
10-
typesFile: './types.js',
11-
skipTypename: true,
12-
};
2+
import { defaultFabbricaPluginConfig, defaultTypeScriptPluginConfig } from '../util/config.cjs';
133

144
const config: CodegenConfig = {
155
generates: {
@@ -18,6 +8,7 @@ const config: CodegenConfig = {
188
plugins: ['typescript'],
199
config: {
2010
...defaultTypeScriptPluginConfig,
11+
skipTypename: true,
2112
scalars: {
2213
CustomScalarTest_CustomScalar1: 'Date',
2314
CustomScalarTest_CustomScalar2: '{ field: string }',
@@ -32,6 +23,7 @@ const config: CodegenConfig = {
3223
plugins: ['@mizdra/graphql-codegen-typescript-fabbrica'],
3324
config: {
3425
...defaultFabbricaPluginConfig,
26+
skipTypename: true,
3527
namingConvention: {
3628
typeNames: './my-naming-fn.cjs',
3729
},
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

e2e/cjs/codegen.ts e2e/02-cjs/codegen.ts

+3-11
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,5 @@
11
import { CodegenConfig } from '@graphql-codegen/cli';
2-
3-
const defaultTypeScriptPluginConfig = {
4-
nonOptionalTypename: true,
5-
enumsAsTypes: true,
6-
avoidOptionals: true,
7-
skipTypename: true,
8-
};
9-
const defaultFabbricaPluginConfig = {
10-
typesFile: './types.js',
11-
skipTypename: true,
12-
};
2+
import { defaultFabbricaPluginConfig, defaultTypeScriptPluginConfig } from '../util/config.cjs';
133

144
const config: CodegenConfig = {
155
generates: {
@@ -18,13 +8,15 @@ const config: CodegenConfig = {
188
plugins: ['typescript'],
199
config: {
2010
...defaultTypeScriptPluginConfig,
11+
skipTypename: true,
2112
},
2213
},
2314
'./__generated__/1-basic/fabbrica.ts': {
2415
schema: './1-basic-schema.graphql',
2516
plugins: ['@mizdra/graphql-codegen-typescript-fabbrica'],
2617
config: {
2718
...defaultFabbricaPluginConfig,
19+
skipTypename: true,
2820
},
2921
},
3022
},
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

e2e/browser/codegen.ts e2e/03-browser/codegen.ts

+3-11
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,5 @@
11
import { CodegenConfig } from '@graphql-codegen/cli';
2-
3-
const defaultTypeScriptPluginConfig = {
4-
nonOptionalTypename: true,
5-
enumsAsTypes: true,
6-
avoidOptionals: true,
7-
skipTypename: true,
8-
};
9-
const defaultFabbricaPluginConfig = {
10-
typesFile: './types.js',
11-
skipTypename: true,
12-
};
2+
import { defaultFabbricaPluginConfig, defaultTypeScriptPluginConfig } from '../util/config.cjs';
133

144
const config: CodegenConfig = {
155
generates: {
@@ -18,13 +8,15 @@ const config: CodegenConfig = {
188
plugins: ['typescript'],
199
config: {
2010
...defaultTypeScriptPluginConfig,
11+
skipTypename: true,
2112
},
2213
},
2314
'./__generated__/1-basic/fabbrica.ts': {
2415
schema: './1-basic-schema.graphql',
2516
plugins: ['@mizdra/graphql-codegen-typescript-fabbrica'],
2617
config: {
2718
...defaultFabbricaPluginConfig,
19+
skipTypename: true,
2820
},
2921
},
3022
},
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

e2e/composite/codegen.ts e2e/04-composite/codegen.ts

+3-7
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
import type { CodegenConfig } from '@graphql-codegen/cli';
2+
import { defaultFabbricaPluginConfig, defaultTypeScriptPluginConfig } from '../util/config.cjs';
23

34
const config: CodegenConfig = {
45
schema: './schema.graphql',
@@ -7,16 +8,11 @@ const config: CodegenConfig = {
78
// Therefore, fabbrica artifacts are also output under `src/`.
89
'src/__generated__/types.ts': {
910
plugins: ['typescript'],
10-
config: {
11-
enumsAsTypes: true, // required
12-
avoidOptionals: true, // required
13-
},
11+
config: defaultTypeScriptPluginConfig,
1412
},
1513
'src/__generated__/fabbrica.ts': {
1614
plugins: ['@mizdra/graphql-codegen-typescript-fabbrica'],
17-
config: {
18-
typesFile: './types.js', // required
19-
},
15+
config: defaultFabbricaPluginConfig,
2016
},
2117
},
2218
};
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

e2e/util/config.cts

+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
export const defaultTypeScriptPluginConfig = {
2+
enumsAsTypes: true, // required
3+
avoidOptionals: true, // required
4+
};
5+
export const defaultFabbricaPluginConfig = {
6+
typesFile: './types.js', // required
7+
};

package-lock.json

+45-75
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+7-7
Original file line numberDiff line numberDiff line change
@@ -31,9 +31,9 @@
3131
}
3232
},
3333
"workspaces": [
34-
"e2e/esm",
35-
"e2e/cjs",
36-
"e2e/browser"
34+
"e2e/01-esm",
35+
"e2e/02-cjs",
36+
"e2e/03-browser"
3737
],
3838
"scripts": {
3939
"build": "run-s -c build:*",
@@ -46,10 +46,10 @@
4646
"test": "vitest",
4747
"pree2e": "npm run build",
4848
"e2e": "run-s -c e2e:*",
49-
"e2e:esm": "npm -w e2e/esm run start",
50-
"e2e:cjs": "npm -w e2e/cjs run start",
51-
"e2e:browser": "npm -w e2e/browser run start",
52-
"e2e:composite": "npm --prefix e2e/composite run start"
49+
"e2e:esm": "npm -w e2e/01-esm run start",
50+
"e2e:cjs": "npm -w e2e/02-cjs run start",
51+
"e2e:browser": "npm -w e2e/03-browser run start",
52+
"e2e:composite": "npm --prefix e2e/04-composite run start"
5353
},
5454
"prettier": "@mizdra/prettier-config-mizdra",
5555
"devDependencies": {

0 commit comments

Comments
 (0)