insomnia/packages/openapi-2-kong/jest.config.js

10 lines
189 B
JavaScript
Raw Normal View History

/** @type { import('@jest/types').Config.InitialOptions } */
module.exports = {
preset: '../../jest-preset.js',
[o2k] copy plugin objects as is (and respect enabled flag) (#3419) * clears all errors in tests, enables overrides for spec generators * removes copy/pasta in tests, uses spec generator, removes useless async continuing from the last commit, but separated out for easier review * consolidates openapi x-kong extension to one place, uses consistently these were used for some things, not used for others, exported in some places, not exported in others. now it's uniform and we can look up references for each type. * adds failing test for ticket * only adds `enabled` where it was specified * allows adding passing top-level properties to config now, the line that was there specifically for `config` is redundant. * adds tags to test result per review feedback * removes unnecessary generic for some reason, this didn't error before, but now it is. * removes unnecessary argument this failed on the CI with: openapi-2-kong: FAIL src/generate.test.ts openapi-2-kong: ● Test suite failed to run openapi-2-kong: src/generate.test.ts:90:58 - error TS2769: No overload matches this call. openapi-2-kong: Overload 1 of 2, '(src: string, options?: (ParseOptions & DocumentOptions & SchemaOptions & ToJSOptions) | undefined): any', gave the following error. openapi-2-kong: Argument of type '"utf8"' is not assignable to parameter of type '(ParseOptions & DocumentOptions & SchemaOptions & ToJSOptions) | undefined'. openapi-2-kong: Overload 2 of 2, '(src: string, reviver: Reviver, options?: (ParseOptions & DocumentOptions & SchemaOptions & ToJSOptions) | undefined): any', gave the following error. openapi-2-kong: Argument of type 'string' is not assignable to parameter of type 'Reviver'. openapi-2-kong: 90 const parsedSpec = YAML.parse(dcFixtureFileString, 'utf8'); openapi-2-kong: ~~~~~~ openapi-2-kong: src/generate.test.ts:100:59 - error TS2769: No overload matches this call. openapi-2-kong: Overload 1 of 2, '(src: string, options?: (ParseOptions & DocumentOptions & SchemaOptions & ToJSOptions) | undefined): any', gave the following error. openapi-2-kong: Argument of type '"utf8"' is not assignable to parameter of type '(ParseOptions & DocumentOptions & SchemaOptions & ToJSOptions) | undefined'. openapi-2-kong: Overload 2 of 2, '(src: string, reviver: Reviver, options?: (ParseOptions & DocumentOptions & SchemaOptions & ToJSOptions) | undefined): any', gave the following error. openapi-2-kong: Argument of type 'string' is not assignable to parameter of type 'Reviver'. openapi-2-kong: 100 const parsedSpec = YAML.parse(k8sFixtureFileString, 'utf8');
2021-05-25 20:05:52 +00:00
globals: {
'ts-jest': {
isolatedModules: false,
},
},
};