Skip to content

Commit 3937bf1

Browse files
author
ALENA NABOKA
committed
comments fixes
1 parent 2f4cdac commit 3937bf1

File tree

2 files changed

+2
-5
lines changed

2 files changed

+2
-5
lines changed

tests/e2e/tests/critical-path/files-auto-update/enablement-area-autoupdate.e2e.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ if (fs.existsSync(workingDirectory)) {
3939
tutorialsTimestampFile.set('timestamp', tutorialNewTimestamp);
4040
tutorialsTimestampFile.save();
4141

42-
fixture `Automatically update information`
42+
fixture `Auto-update in Enablement Area`
4343
.meta({ type: 'critical_path' })
4444
.page(commonUrl)
4545
.beforeEach(async() => {

tests/e2e/tests/critical-path/files-auto-update/promo-button-autoupdate.e2e.ts

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ if (fs.existsSync(workingDirectory)) {
2929
timestampPromoButtonFile.set('timestamp', newTimestamp);
3030
timestampPromoButtonFile.save();
3131

32-
fixture `Automatically update information`
32+
fixture `Auto-update in Promo Button`
3333
.meta({type: 'critical_path'})
3434
.page(commonUrl)
3535
.beforeEach(async() => {
@@ -47,9 +47,6 @@ if (fs.existsSync(workingDirectory)) {
4747
const actualPromoButtonTitle = await contentPathNew.get('cloud.title');
4848
const actualPromoButtonDescription = await contentPathNew.get('cloud.description');
4949
// Check the json files are automatically updated
50-
console.log(`timestamp: ${actualTimestamp}`);
51-
console.log(`actualPromoButtonTitle: ${actualPromoButtonTitle}`);
52-
console.log(`actualPromoButtonDescription: ${actualPromoButtonDescription}`);
5350
await t.expect(actualPromoButtonTitle).notEql(newPromoButtonText, 'The cloud title in the create-redis.json file is automatically updated');
5451
await t.expect(actualPromoButtonDescription).notEql(newPromoButtonText, 'The cloud description in the create-redis.json file is automatically updated');
5552
await t.expect(actualTimestamp).notEql(newTimestamp, 'The timestamp in the build.json file is automatically updated');

0 commit comments

Comments
 (0)