Chore: SSR test (#16797)

* init ssr test

* ssr test
This commit is contained in:
iamkun 2019-10-31 15:06:51 +08:00 committed by Zhi Cun
parent 05ca2d1bae
commit 42e74d1d65
2 changed files with 13 additions and 0 deletions

View File

@ -15,6 +15,9 @@ then
# build
VERSION=$VERSION npm run dist
# ssr test
node test/ssr/require.test.js
# publish theme
echo "Releasing theme-chalk $VERSION ..."
cd packages/theme-chalk

10
test/ssr/require.test.js Normal file
View File

@ -0,0 +1,10 @@
const path = require('path');
try {
process.env.VUE_ENV = 'server';
require(path.join(process.env.PWD, './lib/index'));
console.log('SSR require test PASS');
} catch (e) {
console.error('SSR require test error');
throw Error(e);
}