change: default cli sandbox to safe (#6198)

* change: default cli sandbox to safe
This commit is contained in:
Pooja
2025-12-02 13:09:16 +05:30
committed by GitHub
parent 9d6486ba3e
commit 8716e2b2a6
3 changed files with 4 additions and 4 deletions

View File

@@ -40,7 +40,7 @@ jobs:
run: |
cd packages/bruno-tests/collection
npm install
bru run --env Prod --output junit.xml --format junit
bru run --env Prod --output junit.xml --format junit --sandbox developer
- name: Publish Test Report
uses: dorny/test-reporter@v2

View File

@@ -96,7 +96,7 @@ jobs:
run: |
cd packages/bruno-tests/collection
npm install
node ../../bruno-cli/bin/bru.js run --env Prod --output junit.xml --format junit
node ../../bruno-cli/bin/bru.js run --env Prod --output junit.xml --format junit --sandbox developer
- name: Publish Test Report
uses: EnricoMi/publish-unit-test-result-action@v2

View File

@@ -140,8 +140,8 @@ const builder = async (yargs) => {
type: 'string'
})
.option('sandbox', {
describe: 'Javascript sandbox to use; available sandboxes are "developer" (default) or "safe"',
default: 'developer',
describe: 'Javascript sandbox to use; available sandboxes are "safe" (default) or "developer"',
default: 'safe',
type: 'string'
})
.option('output', {