File tree Expand file tree Collapse file tree 3 files changed +3
-3
lines changed
Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Original file line number Diff line number Diff line change 1515 "scripts" : {
1616 "build" : " tsc" ,
1717 "test" : " jest" ,
18- "test:staged" : " CI=true jest --env=jsdom -- findRelatedTests" ,
18+ "test:staged" : " CI=true jest --findRelatedTests" ,
1919 "version" : " auto-changelog -p --template keepachangelog && git add CHANGELOG.md" ,
2020 "prepublishOnly" : " git push && git push --tags && gh-release" ,
2121 "prepare" : " husky install"
Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ const path = require('path')
22
33const PUBLISH_DIR = path . join ( __dirname , 'publishDir' )
44// actual test
5- const pluginCore = require ( '../../plugin /pluginCore.js ' )
5+ const pluginCore = require ( '../../src /pluginCore' )
66test ( 'generateFilePaths works' , async ( ) => {
77 const results = await pluginCore . generateFilePaths ( {
88 absolutePublishDir : PUBLISH_DIR ,
Original file line number Diff line number Diff line change 11const path = require ( 'path' )
22
33// actual test
4- const pluginCore = require ( '../../plugin /pluginCore.js ' )
4+ const pluginCore = require ( '../../src /pluginCore' )
55test ( 'runPa11y works' , async ( ) => {
66 const results = await pluginCore . runPa11y ( {
77 htmlFilePaths : [ path . join ( __dirname , 'publishDir/index.html' ) ] ,
You can’t perform that action at this time.
0 commit comments