@@ -76,11 +76,8 @@ describe('Configuration', () => {
7676 const argv = baseArgv . concat ( [ relativeFeaturePath ] )
7777
7878 // Act
79- const {
80- featurePaths,
81- pickleFilterOptions,
82- supportCodePaths,
83- } = await ConfigurationBuilder . build ( { argv, cwd } )
79+ const { featurePaths, pickleFilterOptions, supportCodePaths } =
80+ await ConfigurationBuilder . build ( { argv, cwd } )
8481
8582 // Assert
8683 expect ( featurePaths ) . to . eql ( [ featurePath ] )
@@ -99,11 +96,8 @@ describe('Configuration', () => {
9996 const argv = baseArgv . concat ( [ relativeFeaturePath ] )
10097
10198 // Act
102- const {
103- featurePaths,
104- pickleFilterOptions,
105- supportCodePaths,
106- } = await ConfigurationBuilder . build ( { argv, cwd } )
99+ const { featurePaths, pickleFilterOptions, supportCodePaths } =
100+ await ConfigurationBuilder . build ( { argv, cwd } )
107101
108102 // Assert
109103 expect ( featurePaths ) . to . eql ( [ featurePath ] )
@@ -124,11 +118,8 @@ describe('Configuration', () => {
124118 const argv = baseArgv . concat ( [ relativeFeaturePath ] )
125119
126120 // Act
127- const {
128- featurePaths,
129- pickleFilterOptions,
130- supportCodePaths,
131- } = await ConfigurationBuilder . build ( { argv, cwd } )
121+ const { featurePaths, pickleFilterOptions, supportCodePaths } =
122+ await ConfigurationBuilder . build ( { argv, cwd } )
132123
133124 // Assert
134125 expect ( featurePaths ) . to . eql ( [ featurePath ] )
@@ -151,11 +142,8 @@ describe('Configuration', () => {
151142 const argv = baseArgv . concat ( [ relativeFeaturePath ] )
152143
153144 // Act
154- const {
155- featurePaths,
156- pickleFilterOptions,
157- supportCodePaths,
158- } = await ConfigurationBuilder . build ( { argv, cwd } )
145+ const { featurePaths, pickleFilterOptions, supportCodePaths } =
146+ await ConfigurationBuilder . build ( { argv, cwd } )
159147
160148 // Assert
161149 expect ( featurePaths ) . to . eql ( [ featurePath ] )
@@ -175,11 +163,8 @@ describe('Configuration', () => {
175163 const argv = baseArgv . concat ( [ relativeRerunPath ] )
176164
177165 // Act
178- const {
179- featurePaths,
180- pickleFilterOptions,
181- supportCodePaths,
182- } = await ConfigurationBuilder . build ( { argv, cwd } )
166+ const { featurePaths, pickleFilterOptions, supportCodePaths } =
167+ await ConfigurationBuilder . build ( { argv, cwd } )
183168
184169 // Assert
185170 expect ( featurePaths ) . to . eql ( [ ] )
@@ -199,11 +184,8 @@ describe('Configuration', () => {
199184 const argv = baseArgv . concat ( [ relativeRerunPath ] )
200185
201186 // Act
202- const {
203- featurePaths,
204- pickleFilterOptions,
205- supportCodePaths,
206- } = await ConfigurationBuilder . build ( { argv, cwd } )
187+ const { featurePaths, pickleFilterOptions, supportCodePaths } =
188+ await ConfigurationBuilder . build ( { argv, cwd } )
207189
208190 // Assert
209191 expect ( featurePaths ) . to . eql ( [ ] )
@@ -223,11 +205,8 @@ describe('Configuration', () => {
223205 const argv = baseArgv . concat ( [ relativeRerunPath ] )
224206
225207 // Act
226- const {
227- featurePaths,
228- pickleFilterOptions,
229- supportCodePaths,
230- } = await ConfigurationBuilder . build ( { argv, cwd } )
208+ const { featurePaths, pickleFilterOptions, supportCodePaths } =
209+ await ConfigurationBuilder . build ( { argv, cwd } )
231210
232211 // Assert
233212 expect ( featurePaths ) . to . eql ( [ ] )
0 commit comments