Skip to content

Commit 9dd5c8a

Browse files
committed
chore: update dependencies
1 parent 5ea657b commit 9dd5c8a

File tree

3 files changed

+10
-11
lines changed

3 files changed

+10
-11
lines changed

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ jobs:
3030

3131
- run: npm install
3232

33-
- run: npm run release major -- --ci --preRelease=next
33+
- run: npm run release -- --ci --preRelease=next
3434
env:
3535
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
3636
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

package.json

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -35,30 +35,30 @@
3535
"docs": "typedoc"
3636
},
3737
"devDependencies": {
38-
"@adonisjs/core": "^7.0.0-next.15",
38+
"@adonisjs/core": "^7.0.0-next.21",
3939
"@adonisjs/eslint-config": "^3.0.0-next.5",
4040
"@adonisjs/prettier-config": "^1.4.5",
4141
"@adonisjs/tsconfig": "^2.0.0-next.3",
42-
"@japa/api-client": "^3.1.1",
42+
"@japa/api-client": "^3.2.0",
4343
"@japa/assert": "^4.2.0",
44-
"@japa/browser-client": "^2.2.0",
44+
"@japa/browser-client": "^2.3.0",
4545
"@japa/runner": "^5.0.0",
4646
"@poppinss/ts-exec": "^1.4.1",
47-
"@release-it/conventional-changelog": "^10.0.3",
48-
"@types/node": "^25.0.2",
47+
"@release-it/conventional-changelog": "^10.0.4",
48+
"@types/node": "^25.0.3",
4949
"c8": "^10.1.3",
5050
"cross-env": "^10.1.0",
5151
"del-cli": "^7.0.0",
5252
"eslint": "^9.39.2",
5353
"get-port": "^7.1.0",
5454
"playwright": "^1.57.0",
5555
"prettier": "^3.7.4",
56-
"release-it": "^19.1.0",
57-
"tsdown": "^0.18.0",
56+
"release-it": "^19.2.3",
57+
"tsdown": "^0.18.4",
5858
"typescript": "^5.9.3"
5959
},
6060
"peerDependencies": {
61-
"@adonisjs/core": "^7.0.0-next.15",
61+
"@adonisjs/core": "^7.0.0-next.21",
6262
"@japa/api-client": "^3.1.0",
6363
"@japa/browser-client": "^2.2.0",
6464
"@japa/runner": "^4.0.0 || ^5.0.0",

src/extend_context.ts

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -50,8 +50,7 @@ export function extendContext(router: Router, repl: Repl) {
5050
}
5151

5252
TestContext.macro('route', function (this: TestContext, ...args) {
53-
const [identifier, params, options] = args as any[]
54-
return (router.urlBuilder.urlFor as any)(identifier, params, options)
53+
return (router.urlBuilder.urlFor as any)(...args)
5554
})
5655

5756
TestContext.getter('repl', function (this: TestContext) {

0 commit comments

Comments
 (0)