Skip to content

Commit b730f6d

Browse files
author
Gaurav Gandhi
committed
update config and rename dummy repo files for create readme tests
1 parent e6b30c0 commit b730f6d

File tree

7 files changed

+7
-8
lines changed

7 files changed

+7
-8
lines changed

ui-tests-starter/tst-243+/software/aws/toolkits/jetbrains/uitests/docTests/scripts/UpdateReadmeWithSpecificChangesScripts.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ val updateReadmeSpecificChangesMakeChangesFlowScript = """
4646
const makeChangeText = await page.waitForSelector('[placeholder="Describe documentation changes"]');
4747
if (!makeChangeText) {
4848
console.log('Error: Test Failed');
49-
console.log('Unable to find placeholder description test in Make Changes flow');
49+
console.log('Unable to find placeholder description text in Make Changes flow');
5050
} else {
5151
console.log('Found expected placeholder text for Make Changes flow');
5252
console.log('Test Successful');

ui-tests-starter/tst-243+/software/aws/toolkits/jetbrains/uitests/docTests/updateReadmeTests/UpdateReadmeLatestChanges/UpdateReadmeLatestChangesTest.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ class UpdateReadmeLatestChangesTest {
8484
val readme = File(readmePath.toUri())
8585
assertTrue(readme.exists())
8686
println("result: ${readme.readText()}")
87-
assertTrue(readme.readText().contains("tancode", ignoreCase = true))
87+
assertTrue(readme.readText().contains("sample/qdoc", ignoreCase = true))
8888
assertTrue(readme.readText().contains("healthcontroller.java", ignoreCase = true))
8989
println("assertions done")
9090
}
Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,7 @@
11
<application>
22
<component name="Registry">
3-
<entry key="performance.watcher.unresponsive.interval.ms" value="2000" />
3+
<entry key="performance.watcher.unresponsive.interval.ms" value="3000" />
44
<entry key="ide.browser.jcef.debug.port" value="9222"/>
55
<entry key="ide.browser.jcef.sandbox.enable" value="false"/>
6-
<entry key="freeze.reporter.enabled" value="false"/>
76
</component>
87
</application>

ui-tests-starter/tstData/qdoc/updateFlow/src/com/zetcode/tancode/App.java renamed to ui-tests-starter/tstData/qdoc/updateFlow/src/com/sample/qdoc/App.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package com.zetcode.tancode;
1+
package com.sample.qdoc;
22

33
import org.springframework.boot.SpringApplication;
44
import org.springframework.boot.autoconfigure.SpringBootApplication;
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
// Copyright 2025 Amazon.com, Inc. or its affiliates. All Rights Reserved.
22
// SPDX-License-Identifier: Apache-2.0
33

4-
package com.zetcode.tancode.controller;
4+
package com.sample.qdoc.controller;
55

66
import org.springframework.http.ResponseEntity;
77
import org.springframework.web.bind.annotation.GetMapping;
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package com.zetcode.tancode.controller;
1+
package com.sample.qdoc.controller;
22

33
import com.example.model.DataItem;
44
import org.springframework.http.ResponseEntity;
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package com.zetcode.tancode.model;
1+
package com.sample.qdoc.model;
22

33
public class DataItem {
44
private String id;

0 commit comments

Comments
 (0)