@@ -11,17 +11,17 @@ suite('lib/generator functions', function () {
1111 this . timeout ( 120000 ) ;
1212 // Enable test mode to override user defined chars with defaults
1313 setTestMode ( ) ;
14- const rootDir : string = path . resolve ( __dirname , '../../../fixtures/root' ) ;
14+ const rootDir : string = path . resolve ( __dirname , '../../../../ fixtures/root' ) ;
1515 const rootText = fs . readFileSync (
16- path . join ( __dirname , '../../../fixtures/root.txt' ) ,
16+ path . join ( __dirname , '../../../../ fixtures/root.txt' ) ,
1717 'utf8'
1818 ) ;
1919 const rootSorted = fs . readFileSync (
20- path . join ( __dirname , '../../../fixtures/root-sorted.txt' ) ,
20+ path . join ( __dirname , '../../../../ fixtures/root-sorted.txt' ) ,
2121 'utf8'
2222 ) ;
2323 const rootFillLeft = fs . readFileSync (
24- path . join ( __dirname , '../../../fixtures/root-fill-left.txt' ) ,
24+ path . join ( __dirname , '../../../../ fixtures/root-fill-left.txt' ) ,
2525 'utf8'
2626 ) ;
2727
@@ -36,7 +36,7 @@ suite('lib/generator functions', function () {
3636
3737 test ( 'should correctly generate tree from hash text' , ( ) => {
3838 const text = fs . readFileSync (
39- path . join ( __dirname , '../../../fixtures/hash.txt' ) ,
39+ path . join ( __dirname , '../../../../ fixtures/hash.txt' ) ,
4040 'utf8'
4141 ) ;
4242 const items = formatFileTreeItemsFromText ( text ) ;
@@ -46,7 +46,7 @@ suite('lib/generator functions', function () {
4646
4747 test ( 'should correctly generate tree from indent text' , ( ) => {
4848 const text = fs . readFileSync (
49- path . join ( __dirname , '../../../fixtures/indent.txt' ) ,
49+ path . join ( __dirname , '../../../../ fixtures/indent.txt' ) ,
5050 'utf8'
5151 ) ;
5252 const items = formatFileTreeItemsFromText ( text ) ;
@@ -56,7 +56,7 @@ suite('lib/generator functions', function () {
5656
5757 test ( 'should correctly generate tree from hash-indented text if fill-left' , ( ) => {
5858 const text = fs . readFileSync (
59- path . join ( __dirname , '../../../fixtures/hash-indented.txt' ) ,
59+ path . join ( __dirname , '../../../../ fixtures/hash-indented.txt' ) ,
6060 'utf8'
6161 ) ;
6262 const items = formatFileTreeItemsFromText ( text ) ;
@@ -66,7 +66,7 @@ suite('lib/generator functions', function () {
6666
6767 test ( 'should correctly generate tree from hash-indented text if not fill-left' , ( ) => {
6868 const text = fs . readFileSync (
69- path . join ( __dirname , '../../../fixtures/hash-indented.txt' ) ,
69+ path . join ( __dirname , '../../../../ fixtures/hash-indented.txt' ) ,
7070 'utf8'
7171 ) ;
7272 const items = formatFileTreeItemsFromText ( text ) ;
0 commit comments