Skip to content

feat: Implement basic e2e scenario #7199

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
wants to merge 21 commits into from
Closed
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
test.slow
  • Loading branch information
mtojek committed Apr 20, 2023
commit 152ab5db4a71bd3653072c443979ffd14f5f2b61
2 changes: 1 addition & 1 deletion site/e2e/playwright.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ const config: PlaywrightTestConfig = {
port,
reuseExistingServer: false,
},
timeout: 10 * 60 * 1000,
timeout: 3 * 60 * 1000,
}

export default config
2 changes: 2 additions & 0 deletions site/e2e/tests/basicScenario.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,8 @@ import { WorkspacePage } from "../pom/WorkspacePage"
test.use({ storageState: getStatePath("authState") })

test("Basic scenario", async ({ page, baseURL }) => {
test.slow()

const templatesPage = new TemplatesPage(baseURL, page)
const createTemplatePage = new CreateTemplatePage(baseURL, page)
const templatePage = new TemplatePage(baseURL, page)
Expand Down