From 08d3850fa88df2319300874c701da1415b7372a0 Mon Sep 17 00:00:00 2001 From: Ryan Dahl Date: Mon, 28 May 2018 11:16:38 -0400 Subject: Add tests.ts for fast unit tests. Also deno_testing/ which will be released as a standalone module. --- integration_test.go | 11 +++++++++++ 1 file changed, 11 insertions(+) (limited to 'integration_test.go') 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()) + } +} -- cgit v1.2.3