Skip to content

Commit

Permalink
fix: hosting fix and changelog added (#8780)
Browse files Browse the repository at this point in the history
  • Loading branch information
akshbhu authored and ammarkarachi committed Nov 12, 2021
1 parent 9b9f624 commit 3fc4345
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions packages/amplify-e2e-tests/src/__tests__/hosting.test.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { amplifyPublishWithoutUpdate, createReactTestProject, resetBuildCommand } from 'amplify-e2e-core';
import { amplifyPublishWithUpdate, createReactTestProject, resetBuildCommand } from 'amplify-e2e-core';

import { initJSProjectWithProfile, deleteProject } from 'amplify-e2e-core';
import { addDEVHosting, removeHosting, amplifyPushWithoutCodegen, extractHostingBucketInfo, deleteS3Bucket } from 'amplify-e2e-core';
Expand Down Expand Up @@ -39,7 +39,7 @@ describe('amplify add hosting', () => {
it('publish successfully', async () => {
let error;
try {
await amplifyPublishWithoutUpdate(projRoot);
await amplifyPublishWithUpdate(projRoot);
} catch (err) {
error = err;
}
Expand All @@ -50,7 +50,7 @@ describe('amplify add hosting', () => {
const currentBuildCommand = resetBuildCommand(projRoot, '');
let error;
try {
await amplifyPublishWithoutUpdate(projRoot);
await amplifyPublishWithUpdate(projRoot);
} catch (err) {
error = err;
}
Expand Down

0 comments on commit 3fc4345

Please sign in to comment.