2
0
mirror of https://github.com/tenrok/vue-meta.git synced 2026-06-17 14:50:34 +03:00

test: clean e2e build folder before test

This commit is contained in:
pimlie
2019-03-10 12:28:29 +01:00
committed by Alexander Lichter
parent 336f9b5284
commit 214f52ebe8
3 changed files with 31 additions and 10 deletions
+7 -7
View File
@@ -1,14 +1,10 @@
import fs from 'fs'
import fs from 'fs-extra'
import path from 'path'
import { promisify } from 'util'
import { template } from 'lodash'
import webpack from 'webpack'
import VueLoaderPlugin from 'vue-loader/lib/plugin'
import { createRenderer } from 'vue-server-renderer'
const readFile = promisify(fs.readFile)
const writeFile = promisify(fs.writeFile)
const renderer = createRenderer()
export function webpackRun(config) {
@@ -38,6 +34,10 @@ export async function buildFixture(fixture, config = {}) {
}
const webpackConfig = createWebpackConfig(config)
// remove old files
await fs.remove(webpackConfig.output.path)
// run webpack
const webpackStats = await webpackRun(webpackConfig)
// for test debugging
@@ -46,7 +46,7 @@ export async function buildFixture(fixture, config = {}) {
const vueApp = await import(path.resolve(fixturePath, 'server')).then(m => m.default || m)
const templateFile = await readFile(path.resolve(fixturePath, '..', 'app.template.html'), { encoding: 'utf8' })
const templateFile = await fs.readFile(path.resolve(fixturePath, '..', 'app.template.html'), { encoding: 'utf8' })
const compiled = template(templateFile, { interpolate: /{{([\s\S]+?)}}/g })
const webpackAssets = webpackStats.assets.reduce((s, asset) => `${s}<script src="./${asset.name}"${asset.name.includes('chunk') ? '' : ' defer'}></script>\n`, '')
@@ -57,7 +57,7 @@ export async function buildFixture(fixture, config = {}) {
const appFile = path.resolve(webpackStats.outputPath, 'index.html')
const html = compiled({ app, webpackAssets, ...metaInfo })
await writeFile(appFile, html)
await fs.writeFile(appFile, html)
return {
url: `file://${appFile}`,