ancient-appointment-66951
04/08/2021, 1:14 AMancient-appointment-66951
04/08/2021, 1:15 AMancient-appointment-66951
04/08/2021, 1:17 AMnpm install html-webpack-plugin@3
Downgrading from v4. Then it worked. I think we can do some work on our end to make this less painful, I will look into it.ancient-appointment-66951
04/08/2021, 1:17 AMbreezy-australia-64868
04/08/2021, 1:21 AMbreezy-australia-64868
04/08/2021, 1:28 AMancient-appointment-66951
04/08/2021, 1:28 AMancient-appointment-66951
04/08/2021, 1:28 AMancient-appointment-66951
04/08/2021, 1:29 AMancient-appointment-66951
04/08/2021, 1:29 AMbreezy-australia-64868
04/08/2021, 1:29 AMancient-appointment-66951
04/08/2021, 1:32 AMbreezy-australia-64868
04/08/2021, 1:37 AMsome-air-72294
04/09/2021, 2:33 PMwonderful-match-15836
04/09/2021, 2:41 PMbulky-sundown-74498
04/09/2021, 2:57 PMbulky-sundown-74498
04/09/2021, 2:58 PMbulky-sundown-74498
04/09/2021, 2:58 PMsome-air-72294
04/09/2021, 2:59 PMbulky-sundown-74498
04/09/2021, 2:59 PMbulky-sundown-74498
04/09/2021, 3:00 PMsome-air-72294
04/09/2021, 3:00 PMsome-air-72294
04/09/2021, 3:05 PMwonderful-match-15836
04/09/2021, 3:07 PMcy.screenshot()
but captures the current state of the app and later compile those snapshots with vuepress or whatever, with a tree menu kind of like storybook. That would be a neat way to capture example states for browsing through, not sure how far it could get with the interactivity you can get with storybook... but just a showcase tool, it could maybe be ok.bulky-sundown-74498
04/09/2021, 3:24 PMbulky-sundown-74498
04/09/2021, 3:27 PMwonderful-match-15836
04/09/2021, 3:29 PMwonderful-match-15836
04/09/2021, 3:31 PMsome-air-72294
04/09/2021, 4:01 PM"@cypress/vue": "file:../../dist",
so i change it to install the latest @cypress/vue.
Then when i run i get
RROR in components/Logo.spec.ts:4:1 11:32:24
TS2593: Cannot find name 'describe'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha` and then add `jest` or `mocha` to the types field in your tsconfig.
2 | import Logo from './Logo.vue'
3 |
> 4 | describe('<Logo />', () => {
| ^^^^^^^^
5 | it('contains an svg', () => {
6 | mount(Logo)
7 | cy.get('svg').should('be.visible')
ERROR in components/Logo.spec.ts:5:3
TS2593: Cannot find name 'it'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha` and then add `jest` or `mocha` to the types field in your tsconfig.
3 |
4 | describe('<Logo />', () => {
> 5 | it('contains an svg', () => {
| ^^
6 | mount(Logo)
7 | cy.get('svg').should('be.visible')
8 | })
ERROR in components/Logo.spec.ts:7:5
TS2304: Cannot find name 'cy'.
5 | it('contains an svg', () => {
6 | mount(Logo)
> 7 | cy.get('svg').should('be.visible')
| ^^
8 | })
9 | })
10 |
ERROR in cypress/plugins.js:1:23
TS2688: Cannot find type definition file for 'cypress'.
> 1 | /// <reference types="cypress" />
| ^^^^^^^
2 | const { startDevServer } = require('@cypress/webpack-dev-server')
3 | const { getWebpackConfig } = require('nuxt')
4 |
some-air-72294
04/09/2021, 4:02 PM