File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -57,19 +57,19 @@ npm install --save-dev @frsource/cypress-plugin-visual-regression-diff
57
57
58
58
Next, you need to import the library:
59
59
60
- - once , in your support file (located by default in ` cypress/support/index.js ` ):
60
+ - first , in your support file (located by default in ` cypress/support/index.js ` ):
61
61
``` ts
62
62
// typescript
63
- import ' @frsource/cypress-plugin-visual-regression-diff/src /support' ;
63
+ import ' @frsource/cypress-plugin-visual-regression-diff/dist /support' ;
64
64
65
65
// javascript
66
66
require (' @frsource/cypress-plugin-visual-regression-diff/dist/support' );
67
67
```
68
68
69
- - seconds time , in your plugins file (located by default in ` cypress/plugins/index.js ` ):
69
+ - secondly , in your plugins file (located by default in ` cypress/plugins/index.js ` ):
70
70
``` ts
71
71
// typescript
72
- import { initPlugin } from ' @frsource/cypress-plugin-visual-regression-diff/src /plugins' ;
72
+ import { initPlugin } from ' @frsource/cypress-plugin-visual-regression-diff/dist /plugins' ;
73
73
74
74
export default function (on : Cypress .PluginEvents , config : Cypress .PluginConfigOptions ) {
75
75
initPlugin (on , config );
You can’t perform that action at this time.
0 commit comments