ci: fix invoke spec

This commit is contained in:
Evan You
2018-07-28 17:03:02 -04:00
parent ba43900657
commit 6b77af600f
+4 -1
View File
@@ -101,7 +101,10 @@ test('invoke with ts', async () => {
const updatedESLintrc = parseJS(await project.read('.eslintrc.js'))
expect(updatedESLintrc).toEqual(Object.assign({}, baseESLintConfig, {
extends: ['plugin:vue/essential', 'eslint:recommended', '@vue/typescript']
extends: ['plugin:vue/essential', 'eslint:recommended', '@vue/typescript'],
parserOptions: {
parser: 'typescript-eslint-parser'
}
}))
})