Skip to content

Commit d25b0c3

Browse files
authored
Merge pull request #235 from aws-amplify/master
Release(appsync-modelgen-plugin): (Flutter) scalar types and null aware operations fixes
2 parents 5d6575a + e70a079 commit d25b0c3

File tree

4 files changed

+440
-48
lines changed

4 files changed

+440
-48
lines changed

packages/amplify-codegen-e2e-core/src/init/amplifyPull.ts

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -15,9 +15,6 @@ export function amplifyPull(
1515
settings.frontendConfig = DEFAULT_JS_CONFIG;
1616
}
1717
return new Promise((resolve, reject) => {
18-
const tableHeaderRegex = /\|\sCategory\s+\|\sResource\sname\s+\|\sOperation\s+\|\sProvider\splugin\s+\|/;
19-
const tableSeperator = /\|(\s-+\s\|){4}/;
20-
2118
const args = ['pull'];
2219

2320
if (settings.appId) {
@@ -43,7 +40,7 @@ export function amplifyPull(
4340
.wait('Do you plan on modifying this backend?')
4441
.sendLine('y');
4542
} else {
46-
chain.wait('Pre-pull status').wait('Current Environment').wait(tableHeaderRegex).wait(tableSeperator);
43+
chain.wait('Pre-pull status').wait('Current Environment');
4744
}
4845

4946
if (settings.override) {
@@ -57,7 +54,7 @@ export function amplifyPull(
5754
if (settings.emptyDir) {
5855
chain.wait(/Successfully pulled backend environment .+ from the cloud\./).wait("Run 'amplify pull' to sync future upstream changes.");
5956
} else {
60-
chain.wait('Post-pull status').wait('Current Environment').wait(tableHeaderRegex).wait(tableSeperator);
57+
chain.wait('Post-pull status').wait('Current Environment');
6158
}
6259

6360
chain.run((err: Error) => {

0 commit comments

Comments
 (0)