You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
After upgrading to Cypress version 10.1.0 the following is resulting in a Typescript linting error:
Cypress.config('baseUrl', 'http://localhost:1234')
// Argument of type '"baseUrl"' is not assignable to parameter of type 'keyof TestConfigOverrides'.ts(2345)
Desired behavior
This error is not shown
Test code to reproduce
Cypress.config('baseUrl', 'http://localhost:1234')
// Argument of type '"baseUrl"' is not assignable to parameter of type 'keyof TestConfigOverrides'.ts(2345)