mirror of
https://github.com/zitadel/zitadel.git
synced 2024-12-15 04:18:01 +00:00
16 lines
421 B
TypeScript
16 lines
421 B
TypeScript
|
import { readFileSync } from "fs";
|
||
|
|
||
|
module.exports = (on, config) => {
|
||
|
|
||
|
require('cypress-terminal-report/src/installLogsPrinter')(on);
|
||
|
|
||
|
config.defaultCommandTimeout = 10_000
|
||
|
|
||
|
config.env.parsedServiceAccountKey = config.env.serviceAccountKey
|
||
|
if (config.env.serviceAccountKeyPath) {
|
||
|
config.env.parsedServiceAccountKey = JSON.parse(readFileSync(config.env.serviceAccountKeyPath, 'utf-8'))
|
||
|
}
|
||
|
|
||
|
return config
|
||
|
}
|