Skip to content

Commit

Permalink
Fix test program level bug
Browse files Browse the repository at this point in the history
  • Loading branch information
samchon committed Jul 18, 2024
1 parent c39bd7c commit 3576fb3
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 11 deletions.
2 changes: 1 addition & 1 deletion packages/core/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@
},
"homepage": "https://nestia.io",
"dependencies": {
"@nestia/fetcher": "^3.7.2-dev.20240720",
"@nestia/fetcher": "../fetcher/nestia-fetcher-3.7.2-dev.20240720.tgz",
"@nestjs/common": ">=7.0.1",
"@nestjs/core": ">=7.0.1",
"@samchon/openapi": "^0.4.2",
Expand Down
4 changes: 2 additions & 2 deletions packages/sdk/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -32,8 +32,8 @@
},
"homepage": "https://nestia.io",
"dependencies": {
"@nestia/fetcher": "^3.7.2-dev.20240720",
"@nestia/core": "^3.7.2-dev.20240720",
"@nestia/fetcher": "../fetcher/nestia-fetcher-3.7.2-dev.20240720.tgz",
"@nestia/core": "../core/nestia-core-3.7.2-dev.20240720.tgz",
"@samchon/openapi": "^0.4.2",
"cli": "^1.0.1",
"get-function-location": "^2.0.0",
Expand Down
3 changes: 0 additions & 3 deletions test/features/date/src/api/structures/IDateDefined.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,6 @@ export interface IDateDefined {

date: Date;

/**
* @format date-time
*/
date_with_tag: Date;

date_but_union: Date | Buffer;
Expand Down
4 changes: 2 additions & 2 deletions test/features/date/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -45,9 +45,9 @@
// "emitDeclarationOnly": true, /* Only output d.ts files and not JavaScript files. */
// "sourceMap": true, /* Create source map files for emitted JavaScript files. */
// "outFile": "./", /* Specify a file that bundles all outputs into one JavaScript file. If 'declaration' is true, also designates a file that bundles all .d.ts output. */
// "outDir": "./", /* Specify an output folder for all emitted files. */
"outDir": "./bin", /* Specify an output folder for all emitted files. */
// "removeComments": true, /* Disable emitting comments. */
"noEmit": true, /* Disable emitting files from a compilation. */
// "noEmit": true, /* Disable emitting files from a compilation. */
// "importHelpers": true, /* Allow importing helper functions from tslib once per project, instead of including them per-file. */
// "importsNotUsedAsValues": "remove", /* Specify emit/checking behavior for imports that are only used for types. */
// "downlevelIteration": true, /* Emit more compliant, but verbose and less performant JavaScript for iteration. */
Expand Down
6 changes: 3 additions & 3 deletions test/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
},
"homepage": "https://nestia.io",
"devDependencies": {
"@nestia/sdk": "^3.7.2-dev.20240720",
"@nestia/sdk": "../packages/sdk/nestia-sdk-3.7.2-dev.20240720.tgz",
"@nestjs/swagger": "^7.1.2",
"@samchon/openapi": "^0.4.2",
"@types/express": "^4.17.17",
Expand All @@ -40,9 +40,9 @@
},
"dependencies": {
"@fastify/multipart": "^8.1.0",
"@nestia/core": "^3.7.2-dev.20240720",
"@nestia/core": "../packages/core/nestia-core-3.7.2-dev.20240720.tgz",
"@nestia/e2e": "^0.7.0",
"@nestia/fetcher": "^3.7.2-dev.20240720",
"@nestia/fetcher": "../packages/fetcher/nestia-fetcher-3.7.2-dev.20240720.tgz",
"@nestjs/common": "^10.3.5",
"@nestjs/core": "^10.3.5",
"@nestjs/platform-express": "^10.3.5",
Expand Down

0 comments on commit 3576fb3

Please sign in to comment.