We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6a6ccbf commit 0e50c42Copy full SHA for 0e50c42
.github/workflows/smoke-test.yml
@@ -47,7 +47,6 @@ jobs:
47
month = mar,
48
publisher = {Dead Poet Society}
49
}
50
-
51
run: |
52
node - <<'NODE'
53
import { strict as assert } from 'node:assert';
@@ -59,9 +58,10 @@ jobs:
59
58
60
const textbox = page.getByRole('textbox', { name: 'BibTeX Editor' });
61
await page.getByRole('button', { name: 'Tidy' }).click();
+ await page.waitForTimeout(1000);
62
63
const output = await textbox.innerText();
64
- assert.equal(output, process.env.EXPECTED);
+ assert.equal(output.trim(), process.env.EXPECTED.trim());
65
66
await browser.close();
67
NODE
0 commit comments