ESLint plugin
The essential plugin for use with the Atlassian Design System.no-dark-theme-vr-tests
Dark theme VR tests are redundant. See this RFC, (opens new window)
Incorrect
import { snapshot } from '@af/visual-regression';
snapshot(ComponentName, {
variants: [
{
name: 'Light',
environment: {
colorScheme: 'light',
},
},
{
name: 'Dark',
environment: {
colorScheme: 'dark',
^^^^^^^^^^^^^^^^^^^^ invalid
},
},
],
});
Correct
import { snapshot } from '@af/visual-regression';
snapshot(ComponentName, {
variants: [
{
name: 'Light',
environment: {
colorScheme: 'light',
},
},
],
});