@leo-h/create-nodejs-app 1.0.35 → 1.0.36
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@leo-h/create-nodejs-app",
|
3
|
-
"version": "1.0.
|
3
|
+
"version": "1.0.36",
|
4
4
|
"packageManager": "pnpm@9.15.9",
|
5
5
|
"author": "Leonardo Henrique <leonardo0507.business@gmail.com>",
|
6
6
|
"description": "Create a modern Node.js app with TypeScript using one command.",
|
@@ -8,7 +8,7 @@ export function createTestRequest<Params extends InjectOptions>(
|
|
8
8
|
"method" | "url"
|
9
9
|
>,
|
10
10
|
) {
|
11
|
-
return async (params: Params) => {
|
11
|
+
return async (params: Merge<InjectOptions, Params>) => {
|
12
12
|
// eslint-disable-next-line @typescript-eslint/no-unused-vars
|
13
13
|
const { body, json, ...restResult } = await app.inject({
|
14
14
|
...(defaultParams as object),
|