Skip to content

Commit

Permalink
fix: added missing import of the Cheerio type (fix #1526)
Browse files Browse the repository at this point in the history
  • Loading branch information
Sergei Koshel committed May 4, 2020
1 parent 66c5038 commit 9ad3f10
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion package.json
Expand Up @@ -29,7 +29,7 @@
"test:unit:karma:only": "cross-env TARGET=browser karma start test/setup/karma.conf.js --single-run",
"test:unit:node": "yarn build:test && yarn test:unit:node:only",
"test:unit:node:only": "cross-env TEST_ENV=node mocha-webpack --webpack-config test/setup/webpack.test.config.js test/specs/render.spec.js test/specs/renderToString.spec.js --require test/setup/mocha.setup.js",
"test:types": "tsc -p packages/test-utils/types && tsc -p packages/server-test-utils/types"
"test:types": "tsc -p packages/test-utils/types && tsc -p packages/server-test-utils/types --allowSyntheticDefaultImports"
},
"dependencies": {
"babel-core": "^6.26.0",
Expand Down
1 change: 1 addition & 0 deletions packages/server-test-utils/types/index.d.ts
@@ -1,5 +1,6 @@
import Vue, { VNodeData, ComponentOptions, FunctionalComponentOptions, Component } from 'vue'
import { DefaultProps, PropsDefinition } from 'vue/types/options'
import Cheerio from 'cheerio'

/**
* Utility type to declare an extended Vue constructor
Expand Down

0 comments on commit 9ad3f10

Please sign in to comment.