bulky-sundown-74498
04/11/2021, 12:57 PMbulky-sundown-74498
04/11/2021, 12:57 PMsome-air-72294
04/13/2021, 9:19 PMstylesheets
pointing to a URL work but was unable to make cssFiles
work pointing to a local file and I don't get any errors, just no applied styles.
I need my custom styles from bootstrap-vue that the rest of my nuxt
app is using but while troubleshooting i even tried a simple style in a file next to the component:
mount(FormInput, {
stubs,
cssFiles: './FormInput.css',
})
The above still doesn't use the styles from the local file. Does anyone have any idea how to get my local styles to be used during the test?some-air-72294
04/13/2021, 9:40 PMstylesheets
for local too (maybe cssFiles
is deprecated?) https://github.com/cypress-io/cypress/blob/develop/npm/vue/cypress/component/tailwind/plain-html-spec.js
So i tried something like the following and it's still not pulling in the stylesheet
mount(FormInput, {
stubs,
stylesheets: 'components/FormInput.css',
})
some-air-72294
04/13/2021, 9:46 PMsome-air-72294
04/13/2021, 9:53 PM'/node_modules/bootstrap-vue/dist/bootstrap-vue.css'
or even my '/assets/css/formStyles.scss'
stocky-dream-36427
04/14/2021, 2:20 AMstocky-dream-36427
04/14/2021, 2:21 AMjs
// support.js <-- run before every spec file
import 'bootstrap-vue/dist/bootstrap-vue.css'
stocky-dream-36427
04/14/2021, 2:21 AMbulky-sundown-74498
04/14/2021, 2:24 AMbulky-sundown-74498
04/14/2021, 2:24 AMbulky-sundown-74498
04/14/2021, 2:26 AMsome-air-72294
04/14/2021, 1:41 PMimport '/components/FormInput.css'
to cypress/support/index.js
(also tried cypress/support.js
and cypress/support/support.js
) and restarting the test and the CSS is not being picked up.
Trying the import at the top of the spec file did work. When i added my real style files i ran into another problem. Most of my styles are in .scss
so i get error node sass does not yet support your current environment
. .scss
is handled by nuxt
so I'm not sure how to pull that functionality out of nuxt
so it can be shared with cypress
.stocky-dream-36427
04/14/2021, 1:41 PMstocky-dream-36427
04/14/2021, 1:41 PMstocky-dream-36427
04/14/2021, 1:42 PMsome-air-72294
04/14/2021, 1:42 PMstocky-dream-36427
04/14/2021, 1:42 PMstocky-dream-36427
04/14/2021, 1:42 PMsome-air-72294
04/14/2021, 1:43 PMstocky-dream-36427
04/14/2021, 1:47 PMsome-air-72294
04/14/2021, 2:17 PMsome-air-72294
04/14/2021, 2:18 PMbulky-sundown-74498
04/14/2021, 2:36 PMbulky-sundown-74498
04/14/2021, 5:30 PMbulky-sundown-74498
04/14/2021, 5:32 PMbulky-sundown-74498
04/14/2021, 5:35 PMbulky-sundown-74498
04/14/2021, 5:36 PMbulky-sundown-74498
04/14/2021, 6:15 PM