- Remove blanket uncaught:exception suppressor (API-only tests)
- Trim smoke test to single infra-verification assertion
- Rewrite health test with strict status/field assertions, no failOnStatusCode
- Add session CRUD tests (create, get, list, delete, 404 cases, cleanup)
- Use Cypress.env('API_URL') instead of baseUrl to avoid blocking smoke tests
- Remove unused main and type fields from package.json
8 lines
185 B
JavaScript
8 lines
185 B
JavaScript
/// <reference types="cypress" />
|
|
|
|
describe('Cypress Infrastructure Smoke Test', () => {
|
|
it('should execute a basic assertion', () => {
|
|
expect(true).to.be.true;
|
|
});
|
|
});
|