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, 2 insertions, 4 deletions
diff --git a/packages/astro/test/react-component.test.js b/packages/astro/test/react-component.test.js index 7c0de3686..a6bb8cfae 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, silentLogging } from './test-utils.js'; +import { isWindows, loadFixture } from './test-utils.js'; let fixture; @@ -108,9 +108,7 @@ describe('React Components', () => { let devServer; before(async () => { - devServer = await fixture.startDevServer({ - logging: silentLogging, - }); + devServer = await fixture.startDevServer(); }); after(async () => { |