1
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2024-11-21 15:04:11 -05:00

Fix allow-net flag in integration_test.

Test should have failed in 98be59 but didn't. That needs to be
investigated.
This commit is contained in:
Ryan Dahl 2018-05-30 17:22:29 +02:00
parent 4319a0e681
commit e401d9e21b

View file

@ -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()