pulumi/pkg/testing/integration
Paul Stack 3b8c3f7e61
Add an option to be able to stack export showing secrets for use in ExtraRuntimeValidation (#6094)
Fixes: #2993

```
func TestAccMyExample(t *testing.T) {
	test := getBaseOptions().
		With(integration.ProgramTestOptions{
			Dir: filepath.Join(getCwd(t), "test-dir"),
			DecryptSecretsInOutput: true,
			ExtraRuntimeValidation: func(t *testing.T, stackInfo integration.RuntimeValidationStackInfo) {
			  // manipulate the output of the stack here
			}),
		})

	integration.ProgramTest(t, &test)
}
```
2021-01-19 19:18:45 +00:00
..
command.go Ensure stderr is updated on error even if verbose is not set 2020-11-18 00:56:26 -08:00
doc.go Document Go packages (#6009) 2021-01-11 11:07:59 -07:00
program.go Add an option to be able to stack export showing secrets for use in ExtraRuntimeValidation (#6094) 2021-01-19 19:18:45 +00:00
program_test.go Drop unnecessary prefix in test output since we rely on go's testing to do the right thing 2020-11-17 23:24:08 -08:00
pulumi.go Breaking changes due to Feature 2.0 work 2020-04-14 09:30:25 +01:00
s3reporter.go Breaking changes due to Feature 2.0 work 2020-04-14 09:30:25 +01:00
util.go Drop unnecessary prefix in test output since we rely on go's testing to do the right thing 2020-11-17 23:24:08 -08:00