Skip to content

Commit

Permalink
Merge branch 'master' into develop
Browse files Browse the repository at this point in the history
  • Loading branch information
Barthélémy Ledoux committed Jul 30, 2021
2 parents 67c8a33 + b4733a6 commit d5f1dc3
Show file tree
Hide file tree
Showing 15 changed files with 1,080 additions and 237 deletions.
4 changes: 4 additions & 0 deletions circle.yml
Original file line number Diff line number Diff line change
Expand Up @@ -1338,6 +1338,10 @@ jobs:
- run:
name: Build
command: yarn workspace @cypress/vue build
- run:
name: Type Check
command: yarn typecheck
working_directory: npm/vue
- run:
name: Run component tests
command: yarn test:ci:ct
Expand Down
2 changes: 1 addition & 1 deletion npm/vue/.releaserc.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,6 @@ module.exports = {
// this line forces releasing 2.X releases on the latest channel
{ name: 'npm/vue/v2', range: '2.X.X' },
// this one releases v3 on master as beta on the next channel
{ name: 'master', channel: 'next', prerelease: 'beta' },
{ name: 'master', channel: 'next' },
],
}
22 changes: 21 additions & 1 deletion npm/vue/babel.config.json
Original file line number Diff line number Diff line change
@@ -1,12 +1,32 @@
{
"presets": [
[
"@babel/preset-env",
{
"targets": {
"browsers": [
"last 1 Chrome version",
"last 1 Electron version",
"last 1 Firefox version"
]
},
"modules": "cjs"
}
],
"babel-preset-typescript-vue3",
"@babel/preset-typescript"
],
"plugins": [
"@babel/plugin-transform-modules-commonjs",
[
"babel-plugin-istanbul",
{
"extension": [
".js",
".vue"
],
"exclude": [
"**/*.spec.{js,ts}",
"**/setup/*.vue"
]
}
]
Expand Down
2 changes: 1 addition & 1 deletion npm/vue/cypress.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,6 @@
"video": false,
"responseTimeout": 2500,
"projectId": "134ej7",
"testFiles": "**/*spec.js",
"testFiles": "**/*spec.{js,ts,tsx}",
"experimentalFetchPolyfill": true
}
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
/// <reference types="cypress" />
import Hello from './Hello.vue'
import { mount } from '@cypress/vue'

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,12 +10,12 @@ describe('Props', () => {
it('has props', () => {
const messages = ['one 🍎', 'two 🍌']

mount(MessageList, { propsData: { messages } })
mount(MessageList, { props: { messages } })
getItems()
.should('have.length', 2)
.then((list) => {
expect(list[0].textContent.trim()).to.equal(messages[0])
expect(list[1].textContent.trim()).to.equal(messages[1])
expect(list[0].textContent).to.contain(messages[0])
expect(list[1].textContent).to.contain(messages[1])
})
})
})
Expand Down
27 changes: 27 additions & 0 deletions npm/vue/cypress/component/setup/HelloWorld-spec.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
import { h } from 'vue'
import { mount } from '@cypress/vue'
import HelloWorld from './HelloWorld.vue'

describe('HelloWorld', () => {
it('normal mount', () => {
mount(HelloWorld, { props: { msg: 'Hello Cypress' } })
})

it('functional mount', () => {
mount(() => h(HelloWorld, { msg: 'Hello Cypress' }))
})

it('renders properly', () => {
mount(HelloWorld, { props: { msg: 'Hello Cypress' } })
cy.get('h1').should('contain', 'Hello Cypress')
})

it('adds 1 when clicking the plus button', () => {
mount(HelloWorld, { props: { msg: 'Hello Cypress' } })

cy.get('button')
.should('contain', '0')
.click()
.should('contain', '1')
})
})
12 changes: 12 additions & 0 deletions npm/vue/cypress/component/setup/HelloWorld.vue
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
<template>
<h1>{{ msg }}</h1>
<button type="button" @click="count++">count is: {{ count }}</button>
</template>

<script setup lang="ts">
import { defineProps, ref } from 'vue'
defineProps<{
msg: String,
}>()
const count = ref(0)
</script>
19 changes: 11 additions & 8 deletions npm/vue/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,30 +8,33 @@
"build-prod": "yarn build",
"cy:open": "node ../../scripts/cypress.js open-ct --project ${PWD}",
"cy:run": "node ../../scripts/cypress.js run-ct --project ${PWD}",
"test:ci:e2e": "node ../../scripts/cypress.js run --project ${PWD}",
"typecheck": "vue-tsc --noEmit",
"test": "yarn cy:run",
"watch": "yarn build --watch --watch.exclude ./dist/**/*",
"test:ci:e2e": "node ../../scripts/cypress.js run --project ${PWD}",
"test:ci:ct": "node ../../scripts/run-ct-examples.js --examplesList=./examples.env"
},
"dependencies": {
"@cypress/mount-utils": "0.0.0-development",
"@vue/test-utils": "^2.0.0-rc.9"
"@vue/test-utils": "^2.0.0-rc.10"
},
"devDependencies": {
"@babel/core": "7.9.0",
"@babel/plugin-transform-modules-commonjs": "7.10.4",
"@babel/plugin-transform-modules-commonjs": "7.9.6",
"@babel/preset-env": "7.9.5",
"@babel/preset-typescript": "7.10.1",
"@cypress/code-coverage": "3.8.1",
"@cypress/webpack-dev-server": "0.0.0-development",
"@intlify/vue-i18n-loader": "2.0.0-rc.1",
"@rollup/plugin-commonjs": "^17.1.0",
"@rollup/plugin-node-resolve": "^11.1.1",
"@vue/cli-plugin-babel": "~4.4.0",
"@vue/cli-service": "~4.4.0",
"@vue/compiler-sfc": "^3.0.5",
"@vue/compiler-sfc": "3.1.5",
"axios": "0.19.2",
"babel-loader": "8.1.0",
"babel-plugin-istanbul": "6.0.0",
"babel-plugin-istanbul": "^6.0.0",
"babel-preset-typescript-vue3": "^2.0.14",
"css-loader": "3.4.2",
"cypress": "0.0.0-development",
"debug": "4.3.2",
Expand All @@ -44,12 +47,13 @@
"rollup-plugin-istanbul": "2.0.1",
"rollup-plugin-typescript2": "^0.29.0",
"tailwindcss": "1.1.4",
"typescript": "3.9.6",
"vue": "3.0.11",
"typescript": "^4.2.3",
"vue": "3.1.5",
"vue-i18n": "9.0.0-rc.6",
"vue-loader": "16.1.2",
"vue-router": "^4.0.0",
"vue-style-loader": "4.1.2",
"vue-tsc": "0.2.2",
"vuex": "^4.0.0",
"webpack": "4.42.0"
},
Expand Down Expand Up @@ -77,7 +81,6 @@
"cypress",
"vue"
],
"unpkg": "dist/cypress-vue.browser.js",
"module": "dist/cypress-vue.esm-bundler.js",
"peerDependenciesMeta": {
"@cypress/webpack-dev-server": {
Expand Down
16 changes: 5 additions & 11 deletions npm/vue/rollup.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,6 @@ function createEntry (options) {
const {
format,
input,
isBrowser,
} = options

const config = {
Expand Down Expand Up @@ -46,9 +45,6 @@ function createEntry (options) {
if (input === 'src/index.ts') {
if (format === 'es') {
config.output.file = pkg.module
if (isBrowser) {
config.output.file = pkg.unpkg
}
}

if (format === 'cjs') {
Expand All @@ -62,14 +58,14 @@ function createEntry (options) {

config.plugins.push(
ts({
check: format === 'es' && isBrowser,
check: false,
tsconfigOverride: {
compilerOptions: {
declaration: format === 'es',
target: 'es5', // not sure what this should be?
noEmit: false,
module: format === 'cjs' ? 'es2015' : 'esnext',
},
exclude: ['tests'],
exclude: ['cypress/component'],
},
}),
)
Expand All @@ -78,8 +74,6 @@ function createEntry (options) {
}

export default [
createEntry({ format: 'es', input: 'src/index.ts', isBrowser: false }),
createEntry({ format: 'es', input: 'src/index.ts', isBrowser: true }),
createEntry({ format: 'iife', input: 'src/index.ts', isBrowser: true }),
createEntry({ format: 'cjs', input: 'src/index.ts', isBrowser: false }),
createEntry({ format: 'es', input: 'src/index.ts' }),
createEntry({ format: 'cjs', input: 'src/index.ts' }),
]
Loading

4 comments on commit d5f1dc3

@cypress-bot
Copy link
Contributor

@cypress-bot cypress-bot bot commented on d5f1dc3 Jul 30, 2021

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Circle has built the linux x64 version of the Test Runner.

Learn more about this pre-release platform-specific build at https://on.cypress.io/installing-cypress#Install-pre-release-version.

Run this command to install the pre-release locally:

npm install https://cdn.cypress.io/beta/npm/8.1.1/circle-develop-d5f1dc368d09e638a88c8eea70c2bc49c409f1d8/cypress.tgz

@cypress-bot
Copy link
Contributor

@cypress-bot cypress-bot bot commented on d5f1dc3 Jul 30, 2021

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

AppVeyor has built the win32 x64 version of the Test Runner.

Learn more about this pre-release platform-specific build at https://on.cypress.io/installing-cypress#Install-pre-release-version.

Run this command to install the pre-release locally:

npm install https://cdn.cypress.io/beta/npm/8.1.1/appveyor-develop-d5f1dc368d09e638a88c8eea70c2bc49c409f1d8/cypress.tgz

@cypress-bot
Copy link
Contributor

@cypress-bot cypress-bot bot commented on d5f1dc3 Jul 30, 2021

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

AppVeyor has built the win32 ia32 version of the Test Runner.

Learn more about this pre-release platform-specific build at https://on.cypress.io/installing-cypress#Install-pre-release-version.

Run this command to install the pre-release locally:

npm install https://cdn.cypress.io/beta/npm/8.1.1/appveyor-develop-d5f1dc368d09e638a88c8eea70c2bc49c409f1d8/cypress.tgz

@cypress-bot
Copy link
Contributor

@cypress-bot cypress-bot bot commented on d5f1dc3 Jul 30, 2021

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Circle has built the darwin x64 version of the Test Runner.

Learn more about this pre-release platform-specific build at https://on.cypress.io/installing-cypress#Install-pre-release-version.

Run this command to install the pre-release locally:

npm install https://cdn.cypress.io/beta/npm/8.1.1/circle-develop-d5f1dc368d09e638a88c8eea70c2bc49c409f1d8/cypress.tgz

Please sign in to comment.