Linting and Prettier

This commit is contained in:
Okechi Jones-Williams
2026-03-25 01:09:24 +00:00
parent 7bb8eeac7f
commit 89efb0ff01

View File

@@ -1,19 +1,15 @@
import {test, expect} from '../fixtures/signInFixture'
import * as fs from "fs";
import * as fs from 'fs'
test.describe('when given valid input', () => {
test('should be logged in and see settings page', async ({
authenticatedPage,
homePage,
}) => {
test('should be logged in and see settings page', async ({authenticatedPage, homePage}) => {
await homePage.gotToHomePage()
// await authenticatedPage.goto('/settings')
// await expect(authenticatedPage.getByRole('heading', { name: 'Theme' })).toBeVisible()
})
});
})
test.describe('when an error occurs', () => {
test('placeholder', async () => {});
});
test('placeholder', async () => {})
})