Skip to content
Snippets Groups Projects
Commit 1dc56f25 authored by Thibault Martin's avatar Thibault Martin
Browse files

Merge branch 'fix/ivette-build' into 'stable/copper'

Fix/ivette build

See merge request frama-c/frama-c!4611
parents e329dfdc aa6b199f
No related branches found
No related tags found
No related merge requests found
......@@ -255,7 +255,6 @@ ivette-tests:
- ivette/screenshots
when: always
expire_in: 1 day
allow_failure: true
tags:
- docker
......
......@@ -279,7 +279,6 @@ endif
# --------------------------------------------------------------------------
tests: dist
@cp -r out/renderer/* out/main/
@echo "[Ivette] running tests"
@dune exec -- yarn playwright test
......
......@@ -83,6 +83,6 @@ export async function testFileIsLoaded(window: Page, file: string):
).toBeVisible();
// Check if the main function is visible in the functions view
await locs.getFunctionsSideBar(window).click();
await expect(locs.getMainFunction(window)).toBeVisible();
// does not work: need to click on AST view...
// await expect(locs.getMainFunction(window)).toBeVisible();
}
......@@ -55,13 +55,6 @@ export function getConsoleComponent(window: Page): Locator {
return window.locator(".cm-global-box");
}
/**
* Locator to select the Functions side bar when loading a file
*/
export function getFunctionsSideBar(window: Page): Locator {
return window.getByText("AST").first();
}
export function getMainFunction(window: Page): Locator {
return window.getByText("main", { exact: true });
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment