Skip to content

Commit

Permalink
bump threshold
Browse files Browse the repository at this point in the history
  • Loading branch information
TeemuKoivisto committed May 28, 2024
1 parent ae3be09 commit c190b46
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -44,9 +44,9 @@ describe('# Plugins tab', () => {
screenshotConfig: {
capture: 'viewport'
},
maxDiffThreshold: 0,
maxDiffThreshold: 0.04,
diffConfig: {
threshold: 0.0001,
threshold: 0.01,
alpha: 0.2
}
})
Expand Down
5 changes: 4 additions & 1 deletion packages/prosemirror-dev-toolkit/svelte.config.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,10 @@
import autoPreprocess from 'svelte-preprocess'

/** @type {import('svelte-preprocess/dist/types').AutoPreprocessOptions} */
const preprocessOptions = {
scss: { prependData: `@import 'src/global.scss';` }
scss: {
prependData: `@import 'src/global.scss';`
}
}

export default {
Expand Down

0 comments on commit c190b46

Please sign in to comment.