mirror of https://github.com/nocodb/nocodb
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
34 lines
986 B
34 lines
986 B
import { Page } from '@playwright/test'; |
|
import axios from 'axios'; |
|
import { DashboardPage } from '../pages/Dashboard'; |
|
|
|
const setup = async ({page}: {page: Page}) => { |
|
const response = await axios.get('http://localhost:8080/api/v1/meta/test/reset'); |
|
|
|
if(response.status !== 200) { |
|
console.error('Failed to reset test data', response.data); |
|
throw new Error('Failed to reset test data'); |
|
} |
|
const token = response.data.token; |
|
|
|
await page.addInitScript(async ({token}) => { |
|
try { |
|
window.localStorage.setItem('nocodb-gui-v2', JSON.stringify({ |
|
token: token, |
|
})); |
|
} catch (e) { |
|
window.console.log(e); |
|
} |
|
}, { token: token }); |
|
|
|
const project = response.data.projects.find((project) => project.title === 'externalREST'); |
|
|
|
await page.goto(`/#/nc/${project.id}/auth`); |
|
|
|
const dashboardPage = new DashboardPage(page, project); |
|
await dashboardPage.openTable({title: "Country"}) |
|
|
|
return { project, token }; |
|
} |
|
|
|
export default setup; |