mirror of
https://github.com/pezkuwichain/revive.git
synced 2026-04-22 11:27:59 +00:00
Disable large contract test for Bun and Firefox
This commit is contained in:
@@ -57,7 +57,12 @@ test("should successfully compile valid Solidity code in browser", async ({
|
||||
|
||||
test("should successfully compile large valid Solidity code in browser", async ({
|
||||
page,
|
||||
browserName,
|
||||
}) => {
|
||||
if (browserName === "firefox") {
|
||||
// Skipping tests with large contracts on Firefox due to out-of-memory issues.
|
||||
test.skip();
|
||||
}
|
||||
await loadTestPage(page);
|
||||
const standardInput = loadFixture("token.json");
|
||||
const result = await runWorker(page, standardInput);
|
||||
|
||||
Reference in New Issue
Block a user