Skip to content

Commit 07253cf

Browse files
authored
test: move typing tests to seperate folder (#883)
* fix: ignore typing Tests Signed-off-by: Aras Abbasi <aras.abbasi@googlemail.com> * rename test files, to test.js * another try * move it --------- Signed-off-by: Aras Abbasi <aras.abbasi@googlemail.com>
1 parent 41c5bcf commit 07253cf

18 files changed

+5
-5
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@
8282
"yaml": "^2.4.2"
8383
},
8484
"tsd": {
85-
"directory": "test/types"
85+
"directory": "test-types"
8686
},
8787
"publishConfig": {
8888
"access": "public"
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import fastify from 'fastify'
2-
import fastifySwagger from '../..'
2+
import fastifySwagger from '..'
33
import { minimalOpenApiV3Document } from './minimal-openapiV3-document'
44

55
const app = fastify({
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import fastify from 'fastify'
22

3-
import swaggerDefault, { fastifySwagger, SwaggerOptions } from '../..'
4-
import * as fastifySwaggerStar from '../..'
3+
import swaggerDefault, { fastifySwagger, SwaggerOptions } from '..'
4+
import * as fastifySwaggerStar from '..'
55
import { minimalOpenApiV3Document } from './minimal-openapiV3-document'
66

77
const app = fastify()
File renamed without changes.
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ import fastify, { FastifySchema, RouteOptions } from 'fastify'
22
import fastifySwagger, {
33
formatParamUrl,
44
SwaggerOptions,
5-
} from '../..'
5+
} from '..'
66
import { minimalOpenApiV3Document } from './minimal-openapiV3-document'
77
import { expectType } from 'tsd'
88

0 commit comments

Comments
 (0)