From bd8c6608c0e215a4e5c5ccc037a455f4fb3b9aaf Mon Sep 17 00:00:00 2001 From: Miguel Serrano Date: Tue, 2 Nov 2021 15:37:42 +0100 Subject: [PATCH] Update pdf-preview.test.js (#5656) Since the original test iterates over a number of fixtures, it makes more sense to express it as parameterized test, running each scenario separately, each using the default timeout. GitOrigin-RevId: 6b87adbeb01975db1308b5241f6eccbcdb33f9de --- .../components/pdf-preview.test.js | 20 ++++++++++--------- 1 file changed, 11 insertions(+), 9 deletions(-) diff --git a/services/web/test/frontend/features/pdf-preview/components/pdf-preview.test.js b/services/web/test/frontend/features/pdf-preview/components/pdf-preview.test.js index 96a06b5427..0ffd0f498a 100644 --- a/services/web/test/frontend/features/pdf-preview/components/pdf-preview.test.js +++ b/services/web/test/frontend/features/pdf-preview/components/pdf-preview.test.js @@ -289,7 +289,7 @@ describe('', function () { expect(fetchMock.calls()).to.have.length(3) }) - it('displays an error message if there was a compile error', async function () { + describe('displays error messages', function () { const compileErrorStatuses = { 'clear-cache': 'Sorry, something went wrong and your project could not be compiled. Please try again in a few moments.', @@ -313,17 +313,19 @@ describe('', function () { } for (const [status, message] of Object.entries(compileErrorStatuses)) { - cleanup() - fetchMock.restore() - mockCompileError(status) + it(`displays error message for '${status}' status`, async function () { + cleanup() + fetchMock.restore() + mockCompileError(status) - renderWithEditorContext(, { scope }) + renderWithEditorContext(, { scope }) - // wait for "compile on load" to finish - await screen.findByRole('button', { name: 'Compiling…' }) - await screen.findByRole('button', { name: 'Recompile' }) + // wait for "compile on load" to finish + await screen.findByRole('button', { name: 'Compiling…' }) + await screen.findByRole('button', { name: 'Recompile' }) - screen.getByText(message) + screen.getByText(message) + }) } })