Skip to content

Commit 11c9dbf

Browse files
committed
test updates
1 parent 36058ec commit 11c9dbf

File tree

4 files changed

+4
-12
lines changed

4 files changed

+4
-12
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ jobs:
7676
steps:
7777
- name: Install & Start MySQL
7878
run: |
79-
brew install mysql
79+
brew install mysql@8.4
8080
brew tap homebrew/services
8181
brew services start mysql
8282
- uses: actions/checkout@v4

package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@
3636
"devDependencies": {
3737
"@babel/eslint-parser": "^7.27.0",
3838
"@babel/plugin-syntax-import-attributes": "^7.26.0",
39-
"eslint": "^9.23.0"
39+
"eslint": "^9.24.0"
4040
},
4141
"dependencies": {
4242
"@hapi/cookie": "^12.0.1",
@@ -46,10 +46,10 @@
4646
"@hapi/jwt": "^3.2.0",
4747
"@hapi/vision": "^7.0.3",
4848
"@nictool/dns-resource-record": "^1.2.2",
49-
"@nictool/validate": "^0.8.1",
49+
"@nictool/validate": "^0.8.2",
5050
"hapi-swagger": "^17.3.2",
5151
"mysql2": "^3.14.0",
5252
"qs": "^6.14.0",
5353
"yaml": "^2.7.1"
5454
}
55-
}
55+
}

routes/session.test.js

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -23,10 +23,6 @@ after(async () => {
2323
await server.stop()
2424
})
2525

26-
const parseCookie = (c) => {
27-
return c.split(';')[0]
28-
}
29-
3026
describe('session routes', () => {
3127
const routes = [{ GET: '/' }, { DELETE: '/session' }]
3228

routes/user.test.js

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -23,10 +23,6 @@ after(async () => {
2323
await server.stop()
2424
})
2525

26-
const parseCookie = (c) => {
27-
return c.split(';')[0]
28-
}
29-
3026
describe('user routes', () => {
3127
it('POST /session establishes a session', async () => {
3228
const res = await server.inject({

0 commit comments

Comments
 (0)