Skip to content

Commit ca1a08b

Browse files
committed
chore(e2e): ignore taro
1 parent 2d08c40 commit ca1a08b

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

scripts/local-e2e.js

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,13 @@ async function main() {
1919
await login();
2020
const templates = await getTemplates();
2121
console.log(templates);
22-
return Promise.all(templates.map(installTemplate));
22+
return Promise.all(
23+
templates
24+
.filter((template) => {
25+
return template.path !== 'taro-starter';
26+
})
27+
.map(installTemplate)
28+
);
2329
}
2430

2531
async function forkTemplate() {

0 commit comments

Comments
 (0)