Skip to content

Commit

Permalink
fix: test setup
Browse files Browse the repository at this point in the history
  • Loading branch information
christian-bromann committed Nov 2, 2024
1 parent e848e09 commit 7f3d257
Show file tree
Hide file tree
Showing 10 changed files with 16,327 additions and 18,994 deletions.
5 changes: 3 additions & 2 deletions example/nuxt.config.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
// https://nuxt.com/docs/api/configuration/nuxt-config
export default defineNuxtConfig({
devtools: { enabled: true }
})
devtools: { enabled: true },
compatibilityDate: "2024-11-02"
})
12,174 changes: 5,550 additions & 6,624 deletions example/package-lock.json

Large diffs are not rendered by default.

17 changes: 13 additions & 4 deletions example/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,20 @@
"dev": "nuxt dev",
"generate": "nuxt generate",
"preview": "nuxt preview",
"postinstall": "nuxt prepare"
"postinstall": "nuxt prepare",
"test": "wdio run ./wdio.conf.ts"
},
"devDependencies": {
"@nuxt/devtools": "latest",
"@types/node": "^18.17.0",
"nuxt": "^3.6.5"
"@nuxt/devtools": "^1.6.0",
"@wdio/cli": "^9.2.8",
"@wdio/local-runner": "^9.2.8",
"@wdio/mocha-framework": "^9.2.8",
"@wdio/spec-reporter": "^9.2.8",
"@wdio/types": "^9.2.2",
"@types/node": "^22.8.6",
"nuxt": "^3.13.2",
"tsx": "^4.19.2",
"wdio-nuxt-service": "workspace:*",
"webdriverio": "^9.2.8"
}
}
File renamed without changes.
2 changes: 1 addition & 1 deletion test/wdio.conf.ts → example/wdio.conf.ts
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ export const config: WebdriverIO.Config = {
// then the current working directory is where your `package.json` resides, so `wdio`
// will be called from there.
//
specs: ['./specs/**/*.e2e.ts'],
specs: ['./test/**/*.e2e.ts'],
// Patterns to exclude.
exclude: [
// 'path/to/excluded/files'
Expand Down
Loading

0 comments on commit 7f3d257

Please sign in to comment.