try a higher timeout ¯\_(ツ)_/¯

https://github.com/ansible/awx/issues/5234
https://github.com/ansible/awx/pull/5250
This commit is contained in:
Jake McDermott 2019-11-05 13:28:51 -05:00
parent 5246c842b2
commit 69205c5f6b
No known key found for this signature in database
GPG Key ID: 0E56ED990CDFCB4F

View File

@ -67,6 +67,14 @@ describe('<JobTemplateForm />', () => {
{ 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,