0
0
Fork 1
Spiegel von https://github.com/paviliondev/discourse-custom-wizard.git synchronisiert 2024-06-02 22:08:59 +02:00

DEV: Add aditional second waiting to avoid global failure

Dieser Commit ist enthalten in:
jumagura 2023-05-11 06:23:35 -04:00
Ursprung a4a18115ee
Commit 92461ad9d3
2 geänderte Dateien mit 3 neuen und 0 gelöschten Zeilen

Datei anzeigen

@ -83,6 +83,7 @@ acceptance("Admin | Custom Fields Unsuscribed", function (needs) {
"View, create, edit and destroy custom fields",
{ timeout: 15000 }
);
await new Promise((resolve) => setTimeout(resolve, 1000));
}
test("Navigate to custom fields tab", async (assert) => {

Datei anzeigen

@ -51,6 +51,8 @@ acceptance("Admin | Manager", function (needs) {
),
{ timeout: 15000 }
);
// Wait an additional second after the conditions are met
await new Promise((resolve) => setTimeout(resolve, 1000));
}
test("viewing manager fields content", async (assert) => {