Open ConcernedHobbit opened 1 year ago
+1
I also hit this in my stories when running visual tests with applitools, but I haven't been able to make a simple reproduction so I didn't open an issue. I've had to disable visual testing on some stories because I haven't been able to resolve this.
It seems to happen when switching from, to and between stories with pseudo, the configuration persists.
It still happens in 3.1.0; it is not an issue with chromatic, only during manual testing.
Downloaded and tested the project, works fine, maybe is an issue with Vite in my configuration?
/// <reference types="vitest" />
import react from '@vitejs/plugin-react';
import { defineConfig } from 'vite';
import sassDts from 'vite-plugin-sass-dts';
import { version } from '../../release/app/package.json';
import { srcRendererPath } from './vite.paths';
export default defineConfig({
mode: process.env.NODE_ENV === 'production' ? 'production' : 'development',
root: srcRendererPath,
cacheDir: 'node_modules/.vite_storybook',
define: {
'process.env.BUILD_TYPE': JSON.stringify(process.env.BUILD_TYPE),
'process.env.VERSION': JSON.stringify(version),
},
plugins: [react(), sassDts()],
});
It seems the bug happens when I use CSS Selectors:
parameters = { pseudo: { hover: ["button"] } }
Seems
runs twice,
first with old parameters and second with new parameters
The first time, it adds pseudo-classes.
If it ran once, with the latest parameters, the problem wouldn't exist, but I'm not sure how to fix that or if it should be ad-hoc fixed here.
If there was a way to remove cleanup previous classes before adding new, that would also work, I think.
Pseudo classes seem to take some time to be removed from the DOM. I'm running into an issue where switching a story within the same component causes pseudo states from the previous story to still be present. We can also reliably trigger this with
test-runner
enabled visual snapshot tests. As the story switches happen very fast, this addon does not react in time to the changes.This regression was introduced because of a Storybook change sometime between 7.1 and 7.4. I speculate it is because of a race condition with event firing, but do not have time to investigate further.
We've manually cleaned up the leftover classes in visual testing, in
test-runner
'spostRender
hook:This occurs before taking a snapshot, and allows us flake-free visual tests.
Let me know if I can assist in debugging! :)