mirror of
https://github.com/DustinBrett/daedalOS.git
synced 2025-12-06 00:20:05 +01:00
Fix flake
This commit is contained in:
parent
1b5336c11d
commit
bbb3fb60b4
|
|
@ -57,7 +57,7 @@ const ResultSection: FC<ResultsSectionProps> = ({
|
|||
) : (
|
||||
results.map(({ ref }) => (
|
||||
<ResultEntry
|
||||
key={ref}
|
||||
key={`${title}-${ref}`}
|
||||
active={activeItem === ref}
|
||||
details={details}
|
||||
openApp={openApp}
|
||||
|
|
|
|||
|
|
@ -301,14 +301,11 @@ test.describe("has commands", () => {
|
|||
"no headless Pyodide support"
|
||||
);
|
||||
|
||||
const randomNumber = Math.floor(Math.random() * 1000);
|
||||
const randomNumber2 = Math.floor(Math.random() * 1000);
|
||||
|
||||
await sendToTerminal({ page }, `python ${randomNumber}+${randomNumber2}`);
|
||||
await terminalHasText({ page }, `${randomNumber + randomNumber2}`);
|
||||
|
||||
await sendToTerminal({ page }, "py");
|
||||
await terminalHasText({ page }, /\d+\.\d+\.\d+ \(main, .*\) \[Clang/);
|
||||
|
||||
await expect(async () =>
|
||||
terminalHasText({ page }, /\d+\.\d+\.\d+ \(main, .*\) \[Clang/)
|
||||
).toPass();
|
||||
});
|
||||
|
||||
test("qjs", async ({ page }) => {
|
||||
|
|
|
|||
|
|
@ -25,6 +25,7 @@ export const EXCLUDED_CONSOLE_LOGS = (
|
|||
"Cannot update a component (`Unknown`) while rendering a different component",
|
||||
"browserContext.",
|
||||
"Web browser doesn't support Web Audio API",
|
||||
"Slow execution detected",
|
||||
];
|
||||
|
||||
if (browserName === "webkit") {
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user