Files
AppFlowy-Web/cypress/components/dummy.cy.tsx
nathan af9fd65a13 fix: Fix component test spec pattern for CI code coverage
- Update component spec pattern from 'cypress/**/*.cy.{ts,tsx}' to 'cypress/components/**/*.cy.{ts,tsx}'
- Add dummy component test to ensure CI doesn't fail when no component tests exist
- This fixes the 'Can't run because no spec files were found' error in CI

🤖 Generated with Claude Code

Co-Authored-By: Claude <noreply@anthropic.com>
2025-09-06 20:33:27 +08:00

14 lines
401 B
TypeScript

/**
* Dummy component test to ensure Cypress component testing doesn't fail
* when no actual component tests exist.
*
* This file can be removed once real component tests are added.
*/
describe('Dummy Component Test', () => {
it('should pass', () => {
// This is a placeholder test to prevent CI failures
// when running component coverage tests
expect(true).to.be.true;
});
});