@@ -39,7 +39,7 @@ describe('loadConfig', () => {
3939 )
4040
4141 expect ( config ) . toMatchInlineSnapshot ( `
42- Object {
42+ {
4343 "*": "mytask",
4444 }
4545 ` )
@@ -54,7 +54,7 @@ describe('loadConfig', () => {
5454 )
5555
5656 expect ( config ) . toMatchInlineSnapshot ( `
57- Object {
57+ {
5858 "*": "mytask",
5959 }
6060 ` )
@@ -69,7 +69,7 @@ describe('loadConfig', () => {
6969 )
7070
7171 expect ( config ) . toMatchInlineSnapshot ( `
72- Object {
72+ {
7373 "*.css": [Function],
7474 "*.js": [Function],
7575 }
@@ -85,7 +85,7 @@ describe('loadConfig', () => {
8585 )
8686
8787 expect ( config ) . toMatchInlineSnapshot ( `
88- Object {
88+ {
8989 "*.css": [Function],
9090 "*.js": [Function],
9191 }
@@ -101,7 +101,7 @@ describe('loadConfig', () => {
101101 )
102102
103103 expect ( config ) . toMatchInlineSnapshot ( `
104- Object {
104+ {
105105 "*": "mytask",
106106 }
107107 ` )
@@ -120,7 +120,7 @@ describe('loadConfig', () => {
120120 )
121121
122122 expect ( config ) . toMatchInlineSnapshot ( `
123- Object {
123+ {
124124 "*": "mytask",
125125 }
126126 ` )
@@ -139,7 +139,7 @@ describe('loadConfig', () => {
139139 )
140140
141141 expect ( config ) . toMatchInlineSnapshot ( `
142- Object {
142+ {
143143 "*": "mytask",
144144 }
145145 ` )
@@ -156,7 +156,7 @@ describe('loadConfig', () => {
156156 )
157157
158158 expect ( config ) . toMatchInlineSnapshot ( `
159- Object {
159+ {
160160 "*": "mytask",
161161 }
162162 ` )
@@ -167,14 +167,14 @@ describe('loadConfig', () => {
167167
168168 const result = await loadConfig ( { cwd : '/' } )
169169
170- expect ( result ) . toMatchInlineSnapshot ( `Object {}` )
170+ expect ( result ) . toMatchInlineSnapshot ( `{}` )
171171 } )
172172
173173 it ( 'should return empty object when explicit config file is not found' , async ( ) => {
174174 expect . assertions ( 1 )
175175
176176 const result = await loadConfig ( { configPath : 'fake-config-file.yml' } , logger )
177177
178- expect ( result ) . toMatchInlineSnapshot ( `Object {}` )
178+ expect ( result ) . toMatchInlineSnapshot ( `{}` )
179179 } )
180180} )
0 commit comments