cypress: After the update to version 13, the component tests do not work.
Current behavior
After updating to version 13 of Cypress, some tests are giving me the following error.
No tests found. Cypress could not detect tests in this file.
They worked in Version 12
Desired behavior
No response
Test code to reproduce
import {defineConfig} from 'cypress';
export default defineConfig({
e2e: {
baseUrl: 'http://localhost:4200',
supportFile: false,
video: false
},
component: {
devServer: {
framework: 'angular',
bundler: 'webpack'
},
specPattern: '**/*.cy.ts'
}
});
Cypress Version
13.2.0
Node version
18.11.0
Operating System
Mac OS
Debug Logs
No response
Other
No response
About this issue
- Original URL
- State: open
- Created 9 months ago
- Comments: 18 (3 by maintainers)
Yes, done
Iām facing the same problem with Cypress v13.6.0, NX v16.9.1, Node v18 and rspack core v0.3.14
Here is my cypress config:
rspack server configuration:
When I run the tests with webpack v5.88.2 everything works fine.