You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: aws-observability-terraform/test/appmodule/README.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -17,7 +17,7 @@
17
17
- Run the following command to execute all Test functions, with function name pattern as Test*
18
18
```go test -v -timeout 120m ./test/appmodule```
19
19
For single Terratest case
20
-
``go test -v -timeout 30m ./test/appmodule -run ^TestAppModule1$``
20
+
```go test -v -timeout 30m ./test/appmodule -run ^TestAppModule1$```
21
21
4. Go test command runs all functions starting with name Test*. So if you want to run a particular test case according to your use case, comment the rest of the Testing functions. It’ll take less time to run than running all test cases.
22
22
5. In case of failure - you can determine the cause of failure, fix the issue and re-run the failed test case.
23
23
6. For example if you only run testcase 3 you can expect successful test execution as follows:
Copy file name to clipboardExpand all lines: aws-observability-terraform/test/sourcemodule/README.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -20,7 +20,7 @@
20
20
- Run following command to execute all Test functions, with function name pattern as Test*
21
21
```go test -v -timeout 100m ./test/sourcemodule```
22
22
For single Terratest case
23
-
``go test -v -timeout 20m ./test/sourcemodule -run ^TestSourceModule1$``
23
+
```go test -v -timeout 20m ./test/sourcemodule -run ^TestSourceModule1$```
24
24
5. Go test command runs all functions starting with name Test*. So if you want to run a particular test case according to your use case, comment the rest of the Testing functions. It’ll take less time to run than running all test cases.
25
25
6. For example if you only run testcase 3 you can expect successful test execution as follows:
0 commit comments