Skip to content

Commit

Permalink
test: build ssr fixture in test so we can collect coverage
Browse files Browse the repository at this point in the history
  • Loading branch information
pimlie committed Sep 17, 2019
1 parent 695159f commit dcdd47a
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion test/e2e/ssr.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,12 @@ import { buildFixture } from '../utils/build'
describe('basic browser with ssr page', () => {
let html

beforeAll(async () => {
test('build', async () => {
const fixture = await buildFixture('basic')

expect(fixture).toBeDefined()
expect(fixture.html).toBeDefined()

html = fixture.html
})

Expand Down

0 comments on commit dcdd47a

Please sign in to comment.