Skip to content

Commit 47836d8

Browse files
author
Vieltojarvi
committed
fixes after prettier sandbox merge
1 parent da3d96b commit 47836d8

File tree

3 files changed

+7
-6
lines changed

3 files changed

+7
-6
lines changed

package-lock.json

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

packages/cli/src/commands/sandbox/sandbox-seed/sandbox_seed_command.test.ts

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -108,11 +108,12 @@ void describe('sandbox seed command', () => {
108108
void it('runs seed if seed script is found', async () => {
109109
const output = await commandRunner.runCommand('sandbox seed');
110110

111+
const cleanedOutput = output.trimEnd().trimStart();
112+
111113
assert.ok(output !== undefined);
112-
assert.strictEqual(
113-
// removes line endings and any output from the spinner from output
114-
output.trimEnd().split('\n')[1].trimStart(),
115-
`${format.success('✔')} seed has successfully completed`,
114+
assert.deepStrictEqual(
115+
cleanedOutput,
116+
'✔ seed has successfully completed',
116117
);
117118
assert.strictEqual(mockHandleProfile.mock.callCount(), 1);
118119
});

packages/seed/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
"@aws-amplify/client-config": "^1.5.5",
2525
"@aws-amplify/platform-core": "^1.6.0",
2626
"@aws-amplify/plugin-types": "^1.8.0",
27-
"@aws-sdk/client-cognito-identity-provider": "^3.624.0",
27+
"@aws-sdk/client-cognito-identity-provider": "^3.750.0",
2828
"aws-amplify": "^6.0.16"
2929
}
3030
}

0 commit comments

Comments
 (0)