Skip to content

Commit

Permalink
Fix allow-net flag in integration_test.
Browse files Browse the repository at this point in the history
Test should have failed in 98be59 but didn't. That needs to be
investigated.
  • Loading branch information
ry committed May 30, 2018
1 parent 4319a0e commit e401d9e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion integration_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -138,7 +138,7 @@ func TestIntegrationUrlArgs(t *testing.T) {
func TestTestsTs(t *testing.T) {
integrationTestSetup()
// TODO Need unit test for each of the permissions.
cmd := exec.Command(denoFn, "--allow-connect", "--allow-write", "tests.ts")
cmd := exec.Command(denoFn, "--allow-net", "--allow-write", "tests.ts")
cmd.Stdout = os.Stdout
cmd.Stderr = os.Stderr
err := cmd.Run()
Expand Down

0 comments on commit e401d9e

Please sign in to comment.