Skip to content

Commit ec6b1b8

Browse files
committed
Fix wrong path
1 parent 9cef5bc commit ec6b1b8

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

scripts/test.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ const getParameters = () => {
7373
process.exit(1);
7474
}
7575

76-
if (!sample || !pathExistsSync(`samples/${framework}/${sample}`)) {
76+
if (!sample || !pathExistsSync(`packages/e2e-tests/${framework}/${sample}`)) {
7777
logError('Please enter a valid sample name');
7878
process.exit(1);
7979
}
@@ -109,7 +109,7 @@ const npmInstall = (sampleDir) => {
109109
};
110110

111111
const sampleDirectory = ({ framework, sample }) => {
112-
return `samples/${framework}/${sample}`;
112+
return `packages/e2e-tests/${framework}/${sample}`;
113113
};
114114

115115
// bash command for serving sample on prod

0 commit comments

Comments
 (0)