increase test timeout to 60 seconds (#46320)

This commit is contained in:
spalger 2019-09-23 11:36:45 -07:00
parent dce008beda
commit 8ccc3b0557

View file

@ -41,7 +41,7 @@ describe('src/dev/npm/installed_packages', () => {
includeDev: true,
}),
]);
}, 30 * 1000);
}, 60 * 1000);
it('reads all installed packages of a module', () => {
expect(fixture1Packages).toEqual([
@ -80,7 +80,7 @@ describe('src/dev/npm/installed_packages', () => {
expect(tags).toEqual(uniq(tags));
});
it('does not include root package in the list', async () => {
it('does not include root package in the list', () => {
if (kibanaPackages.find(pkg => pkg.name === 'kibana')) {
throw new Error('Expected getInstalledPackages(kibana) to not include kibana pkg');
}