mirror of
https://github.com/elastic/kibana.git
synced 2025-04-23 17:28:26 -04:00
[plugin-helpers/tests] filter out ci-stats warnings (#123510)
This commit is contained in:
parent
eb17b10203
commit
72559010f7
1 changed files with 6 additions and 1 deletions
|
@ -60,7 +60,12 @@ it('builds a generated plugin into a viable archive', async () => {
|
|||
}
|
||||
);
|
||||
|
||||
expect(buildProc.all).toMatchInlineSnapshot(`
|
||||
expect(
|
||||
buildProc.all
|
||||
?.split('\n')
|
||||
.filter((l) => !l.includes('failed to reach ci-stats service'))
|
||||
.join('\n')
|
||||
).toMatchInlineSnapshot(`
|
||||
" info deleting the build and target directories
|
||||
info running @kbn/optimizer
|
||||
│ info initialized, 0 bundles cached
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue