billowy-hairdresser-82846
12/26/2022, 9:45 AMkind-angle-5131
12/26/2022, 3:56 PMsteep-river-95128
12/27/2022, 3:17 PMbest-flower-17510
12/27/2022, 3:22 PMbig-garden-69373
12/27/2022, 7:28 PMbitter-fountain-36713
12/28/2022, 12:48 AMadorable-smartphone-87280
12/28/2022, 7:34 AMbrash-scientist-28014
12/29/2022, 10:15 AMbest-flower-17510
12/29/2022, 1:05 PMgray-kilobyte-89541
12/29/2022, 1:58 PMnarrow-processor-41395
12/31/2022, 9:39 AMnarrow-processor-41395
12/31/2022, 9:39 AMnarrow-processor-41395
12/31/2022, 9:41 AMlate-dinner-1440
01/01/2023, 7:10 PMlate-dinner-1440
01/01/2023, 8:05 PMfreezing-piano-2792
01/02/2023, 10:30 AMverifyUpcomingAssertions
?green-book-63455
01/03/2023, 9:38 AMthankful-wire-37848
01/03/2023, 2:23 PMsubmitTask
and expectTaskName
commands can only be chained off from a Chainable<TaskContext>
subject and not a Chainable<any>
subject. Is that possible in Typescript?thankful-wire-37848
01/03/2023, 2:25 PMinterface Chainable<TaskContext> { ... }
or interface Chainable<Subject = TaskContext> { ... }
blocks but that doesn't seem to be valid.thankful-wire-37848
01/03/2023, 3:13 PMboundless-pager-73753
01/03/2023, 3:54 PMincalculable-rainbow-43330
01/03/2023, 4:17 PMboundless-pager-73753
01/03/2023, 6:41 PMdazzling-addition-19232
01/04/2023, 7:29 AMstraight-rose-89671
01/04/2023, 9:13 AMbaseUrl: process.env.APP_URL,
APP_URL is a combination in my .env APP_URL=https://${CLIENT_SUBDOMAIN}.${APP_TLD}
Cypress can't handle the variables in the config and i got this error when i want to open cypressstraight-rose-89671
01/04/2023, 9:14 AMrequire('dotenv').config()
module.exports = defineConfig({
e2e: {
baseUrl: process.env.APP_URL,
},
})
I did this:
var dotenv = require('dotenv')
var dotenvExpand = require('dotenv-expand')
var myEnv = dotenv.config()
dotenvExpand.expand(myEnv)
module.exports = defineConfig({
e2e: {
baseUrl: process.env.APP_URL,
},
})
straight-rose-89671
01/04/2023, 9:15 AMgray-kilobyte-89541
01/04/2023, 11:36 AMincalculable-rainbow-43330
01/05/2023, 4:48 PM