Skip to content

Commit a26b221

Browse files
committed
unskip vue2 tests
1 parent b43b6df commit a26b221

File tree

4 files changed

+11
-14
lines changed

4 files changed

+11
-14
lines changed

system-tests/package.json

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,8 @@
77
"browser": "lib/fixtureDirs.ts",
88
"scripts": {
99
"type-check": "tsc --project .",
10+
"clean-deps": "find . -depth -name node_modules -type d -exec rimraf {} \\;",
11+
"preprojects:yarn:install": "yarn clean-deps",
1012
"projects:yarn:install": "node ./scripts/projects-yarn-install.js",
1113
"test": "node ./scripts/run.js --glob-in-dir='{test,test-binary}'",
1214
"test:ci": "node ./scripts/run.js"

system-tests/projects/nuxtjs-vue2-configured/package.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,8 @@
1818
"webpack-dev-server": "4.7.4"
1919
},
2020
"devDependencies": {
21-
"@cypress/vue": "2.2.4",
21+
"@cypress/vue2": "file:../../../npm/vue2",
22+
"@cypress/mount-utils": "file:../../../npm/mount-utils",
2223
"@cypress/webpack-dev-server": "file:../../../npm/webpack-dev-server"
2324
}
2425
}

system-tests/projects/nuxtjs-vue2-configured/yarn.lock

Lines changed: 5 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -937,17 +937,13 @@
937937
resolved "https://registry.yarnpkg.com/@csstools/convert-colors/-/convert-colors-1.4.0.tgz#ad495dc41b12e75d588c6db8b9834f08fa131eb7"
938938
integrity sha512-5a6wqoJV/xEdbRNKVo6I4hO3VjyDq//8q2f9I6PBAvMesJHFauXDorcNCsr9RzvsZnaWi5NYCcfyqP1QeFHFbw==
939939

940-
"@cypress/mount-utils@1.0.2":
941-
version "1.0.2"
942-
resolved "https://registry.yarnpkg.com/@cypress/mount-utils/-/mount-utils-1.0.2.tgz#afbc4f8c350b7cd86edc5ad0db0cbe1e0181edc8"
943-
integrity sha512-Fn3fdTiyayHoy8Ol0RSu4MlBH2maQ2ZEXeEVKl/zHHXEQpld5HX3vdNLhK5YLij8cLynA4DxOT/nO9iEnIiOXw==
940+
"@cypress/mount-utils@file:../../../npm/mount-utils":
941+
version "0.0.0-development"
944942

945-
"@cypress/vue@2.2.4":
946-
version "2.2.4"
947-
resolved "https://registry.yarnpkg.com/@cypress/vue/-/vue-2.2.4.tgz#a8d53e2b36816aae6ee3d7248b9e2e4b07d443e3"
948-
integrity sha512-ve6aPUj1UHZRpfU9U/NKfsVgzCYVR2CeTdN/knhdWs8sbW5ERgbD1EkEdJ9+VCdqXcIoqRWdMQovnJUmJW6FLA==
943+
"@cypress/vue2@file:../../../npm/vue2":
944+
version "0.0.0-development"
949945
dependencies:
950-
"@cypress/mount-utils" "1.0.2"
946+
"@cypress/mount-utils" "file:../../../npm/mount-utils"
951947
"@vue/test-utils" "^1.1.3"
952948

953949
"@cypress/webpack-dev-server@file:../../../npm/webpack-dev-server":

system-tests/test/component_testing_spec.ts

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,7 @@ describe('component testing projects', function () {
1111
expectedExitCode: 0,
1212
})
1313

14-
// TODO: bundle vue2 in binary
15-
systemTests.it.skip('vueclivue2-configured', {
14+
systemTests.it('vueclivue2-configured', {
1615
project: 'vueclivue2-configured',
1716
testingType: 'component',
1817
spec: 'src/components/HelloWorld.cy.js',
@@ -53,8 +52,7 @@ describe('component testing projects', function () {
5352
expectedExitCode: 0,
5453
})
5554

56-
// TODO: bundle vue2 in binary
57-
systemTests.it.skip('nuxtjs-vue2-configured', {
55+
systemTests.it('nuxtjs-vue2-configured', {
5856
project: 'nuxtjs-vue2-configured',
5957
testingType: 'component',
6058
spec: 'components/Tutorial.cy.js',

0 commit comments

Comments
 (0)