Skip to content
This repository has been archived by the owner on Dec 12, 2020. It is now read-only.

Tags: cypress-io/cypress-vue-unit-test

Tags

v3.5.1

fix(deps): update dependency @cypress/webpack-preprocessor to v5.4.2

v3.5.0

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
feat: add experimental fetch polyfill support (#370)

for https://www.cypress.io/blog/2020/06/29/experimental-fetch-polyfill/

v3.4.4

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Making i18n specs more maintainable. Covering additional use case. (#366

)

* chore: refactor i18n to demonstrate i18n loader vs json-only loader. Generate tests and source

v3.4.3

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
fix: add Example cli TypeScript project (#356)

- remove double plugin insert

v3.4.2

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
fix: add types for Cypress.vue property (#354)

and update constructor type for Vue components

v3.4.1

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
fix: update i18n plugin to work (#352)

v3.4.0

feat: automatically fail Cypress test on Vue-caught error

v3.3.0

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
feat: rest render function components (#343)

```
<app-component :elementtype = "'div,blue,30,div1'">Hello World</app-component>
```

for individual component to be mounted

```js
mount(appComponent, {
  propsData: {
    elementtype: 'h3,red,30,h3tag',
  },
})
```

v3.2.0

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
feat: allow options when using extensions in tests (#342)

```js
const use = [
  MyPlugin, // this plugin does not need options
  [MyPluginWithOptions, { label: 'testing' }], // this plugin needs options
]

// extend Vue with plugins
const extensions = {
  use,
}

mount({}, { extensions })
```

v3.1.0

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
feat: instrument code coverage by default (#339)