File tree Expand file tree Collapse file tree 1 file changed +1
-8
lines changed
Expand file tree Collapse file tree 1 file changed +1
-8
lines changed Original file line number Diff line number Diff line change @@ -21,11 +21,6 @@ import childProcess, { execSync } from 'child_process';
2121
2222const samplesDir = path . join ( __dirname , '..' , 'samples' ) ;
2323
24- // Add sample folders to this list to exclude them from the test run.
25- const excludedFolders = [
26- 'map-drawing-terradraw' ,
27- ] ;
28-
2924// Function to return all sample folders.
3025const getAllSampleFolders = ( ) => {
3126 return fs . readdirSync ( samplesDir ) . filter ( ( file ) => {
@@ -101,9 +96,7 @@ const getChangedSampleFolders = (): string[] => {
10196} ;
10297
10398// Get changed folders, filtering out excluded ones.
104- const foldersToTest = getChangedSampleFolders ( ) . filter (
105- ( folder ) => ! excludedFolders . includes ( folder )
106- ) ;
99+ const foldersToTest = getChangedSampleFolders ( ) ;
107100
108101if ( foldersToTest . length === 0 ) {
109102 console . log ( "No sample folders found." ) ;
You can’t perform that action at this time.
0 commit comments