We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a1d71c6 commit ae1f2d0Copy full SHA for ae1f2d0
e2e/samples.spec.ts
@@ -97,6 +97,14 @@ const getChangedSampleFolders = (): string[] => {
97
98
// Get changed folders, filtering out excluded ones.
99
const foldersToTest = getChangedSampleFolders();
100
+
101
+// Function to omit specific sample folders from testing.
102
+const omitSampleFolders = (folders: string[]): string[] => {
103
+ const excludedFolders = [
104
+ "js-api-loader-map",
105
+ ];
106
+ return folders.filter(folder => !excludedFolders.includes(folder));
107
+};
108
109
if (foldersToTest.length === 0) {
110
console.log("No sample folders found.");
0 commit comments