@@ -22,7 +22,7 @@ describe('markdown generation', async function() {
2222
2323 for ( let i = 0 ; i < markdownFiles . length ; i ++ ) {
2424 const markdownFile = markdownFiles [ i ] ;
25- const expectedContent = await readTestOutputFile ( `data/interpreted-results/path-problem/${ expectedFileNames [ i ] } .md` ) ;
25+ const expectedContent = await readTestOutputFile ( `data/interpreted-results/path-problem/expected/ ${ expectedFileNames [ i ] } .md` ) ;
2626
2727 // Check that the markdown file has the expected name
2828 expect ( markdownFile . fileName ) . to . equal ( expectedFileNames [ i ] ) ;
@@ -48,7 +48,7 @@ describe('markdown generation', async function() {
4848
4949 for ( let i = 0 ; i < markdownFiles . length ; i ++ ) {
5050 const markdownFile = markdownFiles [ i ] ;
51- const expectedContent = await readTestOutputFile ( `data/interpreted-results/problem/${ expectedFileNames [ i ] } .md` ) ;
51+ const expectedContent = await readTestOutputFile ( `data/interpreted-results/problem/expected/ ${ expectedFileNames [ i ] } .md` ) ;
5252
5353 // Check that the markdown file has the expected name
5454 expect ( markdownFile . fileName ) . to . equal ( expectedFileNames [ i ] ) ;
@@ -74,7 +74,7 @@ describe('markdown generation', async function() {
7474
7575 for ( let i = 0 ; i < markdownFiles . length ; i ++ ) {
7676 const markdownFile = markdownFiles [ i ] ;
77- const expectedContent = await readTestOutputFile ( `data/raw-results/${ expectedFileNames [ i ] } .md` ) ;
77+ const expectedContent = await readTestOutputFile ( `data/raw-results/expected/ ${ expectedFileNames [ i ] } .md` ) ;
7878
7979 // Check that the markdown file has the expected name
8080 expect ( markdownFile . fileName ) . to . equal ( expectedFileNames [ i ] ) ;
0 commit comments