forked from paketo-buildpacks/npm-install
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathinit_test.go
More file actions
23 lines (20 loc) · 741 Bytes
/
Copy pathinit_test.go
File metadata and controls
23 lines (20 loc) · 741 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
package npminstall_test
import (
"testing"
"github.com/sclevine/spec"
"github.com/sclevine/spec/report"
)
func TestUnitNPMInstall(t *testing.T) {
suite := spec.New("npm-install", spec.Report(report.Terminal{}))
suite("Build", testBuild)
suite("BuildProcessResolver", testBuildProcessResolver)
suite("CIBuildProcess", testCIBuildProcess)
suite("Detect", testDetect)
suite("InstallBuildProcess", testInstallBuildProcess)
suite("PackageJSONParser", testPackageJSONParser)
suite("PackageManangerConfigurationManager", testPackageManagerConfigurationManager)
suite("ProjectPathParser", testProjectPathParser)
suite("PruneBuildProcess", testPruneBuildProcess)
suite("RebuildBuildProcess", testRebuildBuildProcess)
suite.Run(t)
}