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:
parent
4319a0e681
commit
e401d9e21b
1 changed files with 1 additions and 1 deletions
|
@ -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()
|
||||
|
|
Loading…
Reference in a new issue