Skip to content

Commit

Permalink
test: Events API integration test - Success Case (#144)
Browse files Browse the repository at this point in the history
---------

Co-authored-by: Adriana Zenck Zimmermann <[email protected]>
  • Loading branch information
nimat1 and dricazenck authored Dec 3, 2024
1 parent 181ac0e commit cabea01
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions integration-test/tests/cms/events.test.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
import {expect, test} from '@playwright/test';

test('GET /api/cms/v1/events returns success response code', async ({request}) => {
const response = await request.get(`/api/cms/v1/events`);
expect(response.status()).toBe(200);
});

0 comments on commit cabea01

Please sign in to comment.