From 69205c5f6ba77a6ce5a54ad5abf308092456e026 Mon Sep 17 00:00:00 2001 From: Jake McDermott Date: Tue, 5 Nov 2019 13:28:51 -0500 Subject: [PATCH] =?UTF-8?q?try=20a=20higher=20timeout=20=C2=AF\=5F(?= =?UTF-8?q?=E3=83=84)=5F/=C2=AF?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit https://github.com/ansible/awx/issues/5234 https://github.com/ansible/awx/pull/5250 --- .../src/screens/Template/shared/JobTemplateForm.test.jsx | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/awx/ui_next/src/screens/Template/shared/JobTemplateForm.test.jsx b/awx/ui_next/src/screens/Template/shared/JobTemplateForm.test.jsx index 7ed98ad893..62e6607be4 100644 --- a/awx/ui_next/src/screens/Template/shared/JobTemplateForm.test.jsx +++ b/awx/ui_next/src/screens/Template/shared/JobTemplateForm.test.jsx @@ -67,6 +67,14 @@ describe('', () => { { id: 5, kind: 'Machine', name: 'Cred 5', url: 'www.google.com' }, ]; + beforeAll(() => { + jest.setTimeout(5000 * 4); + }); + + afterAll(() => { + jest.setTimeout(5000); + }); + beforeEach(() => { LabelsAPI.read.mockReturnValue({ data: mockData.summary_fields.labels,