Skip to content

Commit

Permalink
feat: remove test only
Browse files Browse the repository at this point in the history
  • Loading branch information
vikrantgupta25 committed Nov 8, 2023
1 parent 8ebcb15 commit 775715f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions frontend/tests/service/index.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ test.describe('Service Page', () => {
expect(isLoggedIn).toBe(true);
});

test('Services Table Rendered with correct data', async ({ baseURL }) => {
test.only('Services Table Rendered with correct data', async ({ baseURL }) => {
// visit services page
await page.goto(`${baseURL}${ROUTES.APPLICATION}`);

Expand All @@ -49,7 +49,7 @@ test.describe('Service Page', () => {
await page.route(`**/services`, (route) =>
route.fulfill({
status: 200,
body: JSON.stringify({ servicesSuccessResponse }),
json: servicesSuccessResponse,
}),
);

Expand Down

0 comments on commit 775715f

Please sign in to comment.