Mikhail
Mikhail
@nskazki Thanks for report and sorry for delay. I will try to fix it soon.
@thplat can you show the console of `document.body.innerHTML` before `expect` call?
@kazeemOnis Node 8 is legacy at the moment. I think your CI has greater nodejs version.
@tomas-hartman thanks for your report. Can you show please your `sass-resources-loader` configuration. I'll try to fix it this week.
@tomas-hartman Try to use absolute path. Something like this: ```js const path = require('path'); module.exports = { prepend: [path.resolve(__dirname, "YOUR_ASSETS_FOLDER" ,"assets/themes/orange/colors.scss")] }; ```
@tomas-hartman I reseached this problem. It can be solved with custom importer. `jest-css-modules-transform-config.js`s content is something like this: ```js const path = require('path'); module.exports = { prepend: ["./assets/themes/orange/colors.scss"], sassConfig: {...
> @Connormiha Could you include a changelog entry? Instructions are here: https://github.com/cypress-io/cypress/blob/develop/guides/writing-the-cypress-changelog.md#writing-guidelines @jennifer-shehane Hello, I have added the changes
@krutoo can you provide your sass and jest config? And also webpack config. Maybe it works with Webpack because you have some custom import rules.
You can use custom importer for sass config https://github.com/Connormiha/jest-css-modules-transform#options https://sass-lang.com/documentation/js-api#importer
@krutoo Hello. It should work. It just pass config to `sass` module. Could you please show error message and ensure path of `jest-css-modules-transform-config.js`?