diff options
author | Ryan Dahl <ry@tinyclouds.org> | 2018-05-29 05:27:41 -0400 |
---|---|---|
committer | Ryan Dahl <ry@tinyclouds.org> | 2018-05-29 05:27:41 -0400 |
commit | e64e4e3ec85753dcfcc1a0bfa3c65573e351b0ef (patch) | |
tree | 19098ac25875cedaf5271723bc19806cd10f29e8 /integration_test.go | |
parent | 47cfde452d5638fb7eb418a70ef775c03d25f91c (diff) |
Add permission flags
Diffstat (limited to 'integration_test.go')
-rw-r--r-- | integration_test.go | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/integration_test.go b/integration_test.go index 5b96c0abc..d98856f37 100644 --- a/integration_test.go +++ b/integration_test.go @@ -149,7 +149,8 @@ func TestErrors(t *testing.T) { func TestTestsTs(t *testing.T) { integrationTestSetup() - cmd := exec.Command(denoFn, "tests.ts") + // TODO Need unit test for each of the permissions. + cmd := exec.Command(denoFn, "--allow-connect", "--allow-write", "tests.ts") cmd.Stdout = os.Stdout cmd.Stderr = os.Stderr err := cmd.Run() |