diff options
Diffstat (limited to 'integration_test.go')
-rw-r--r-- | integration_test.go | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/integration_test.go b/integration_test.go index 37c87f30a..a3f8f16ce 100644 --- a/integration_test.go +++ b/integration_test.go @@ -144,3 +144,14 @@ func TestErrors(t *testing.T) { t.Fatalf("Expected error.") } } + +func TestTestsTs(t *testing.T) { + integrationTestSetup() + cmd := exec.Command(denoFn, "tests.ts") + cmd.Stdout = os.Stdout + cmd.Stderr = os.Stderr + err := cmd.Run() + if err != nil { + t.Fatal(err.Error()) + } +} |