Skip to content

Commit

Permalink
fix: move certs to correct folder
Browse files Browse the repository at this point in the history
  • Loading branch information
robertsLando committed Nov 22, 2024
1 parent a6bbd90 commit e9705c0
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions electron-test/test/service/server_launcher.ts
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@ export default class ServerLauncher implements Services.ServiceInstance {
}

async onPrepare(): Promise<void> {
const keyPath = pathResolve(__dirname, '../../../test/certs/server-key.pem')
const certPath = pathResolve(__dirname, '../../../test/certs/server-cert.pem')
const keyPath = pathResolve(__dirname, '../../../test/browser/certs/server-key.pem')
const certPath = pathResolve(__dirname, '../../../test/browser/certs/server-cert.pem')

this.#aedesBroker = await start({
protos: ['tcp', 'tls'],
Expand Down
File renamed without changes.
File renamed without changes.
4 changes: 2 additions & 2 deletions web-test-runner.config.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@ await start({
protos: ['tcp', 'tls', 'ws', 'wss'],
wsPort,
wssPort,
key: './test/certs/server-key.pem',
cert: './test/certs/server-cert.pem',
key: './test/browser/certs/server-key.pem',
cert: './test/browser/certs/server-cert.pem',
verbose: true,
stats: false
})
Expand Down

0 comments on commit e9705c0

Please sign in to comment.