diff options
Diffstat (limited to 'packages/astro/test/react-component.test.js')
-rw-r--r-- | packages/astro/test/react-component.test.js | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/packages/astro/test/react-component.test.js b/packages/astro/test/react-component.test.js index 8c22cc861..7205b0342 100644 --- a/packages/astro/test/react-component.test.js +++ b/packages/astro/test/react-component.test.js @@ -1,6 +1,6 @@ import { expect } from 'chai'; import { load as cheerioLoad } from 'cheerio'; -import { isWindows, loadFixture } from './test-utils.js'; +import { isWindows, loadFixture, silentLogging } from './test-utils.js'; let fixture; @@ -103,7 +103,9 @@ describe('React Components', () => { let devServer; before(async () => { - devServer = await fixture.startDevServer(); + devServer = await fixture.startDevServer({ + logging: silentLogging, + }); }); after(async () => { |