mirror of
https://github.com/elastic/kibana.git
synced 2025-04-24 17:59:23 -04:00
increase test timeout to 60 seconds (#46320)
This commit is contained in:
parent
dce008beda
commit
8ccc3b0557
1 changed files with 2 additions and 2 deletions
|
@ -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');
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue