mirror of https://github.com/pulumi/pulumi.git
32 lines
802 B
Go
32 lines
802 B
Go
// Copyright 2016-2020, Pulumi Corporation. All rights reserved.
|
|
//go:build (nodejs || all) && !xplatform_acceptance
|
|
|
|
package ints
|
|
|
|
import (
|
|
"path/filepath"
|
|
"testing"
|
|
|
|
"github.com/pulumi/pulumi/pkg/v3/testing/integration"
|
|
)
|
|
|
|
func TestNodejsTransformations(t *testing.T) {
|
|
t.Parallel()
|
|
|
|
//nolint:paralleltest // ProgramTest calls t.Parallel()
|
|
for _, dir := range Dirs {
|
|
d := filepath.Join("nodejs", dir)
|
|
t.Run(d, func(t *testing.T) {
|
|
integration.ProgramTest(t, &integration.ProgramTestOptions{
|
|
Dir: d,
|
|
Dependencies: []string{"@pulumi/pulumi"},
|
|
LocalProviders: []integration.LocalDependency{
|
|
{Package: "testprovider", Path: filepath.Join("..", "..", "testprovider")},
|
|
},
|
|
Quick: true,
|
|
ExtraRuntimeValidation: Validator,
|
|
})
|
|
})
|
|
}
|
|
}
|