Skip to content

Commit 4bdbacc

Browse files
authored
chore: remove debug param for explorer alpha (#1174)
1 parent 584eb74 commit 4bdbacc

2 files changed

Lines changed: 1 addition & 6 deletions

File tree

packages/@dcl/sdk-commands/src/commands/start/explorer-alpha.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,6 @@ async function runApp(
5555
params.set('dclenv', dclenv)
5656

5757
params.set('local-scene', 'true')
58-
params.set('debug', 'true')
5958

6059
if (isHub) {
6160
params.set('hub', 'true')

test/sdk-commands/commands/start/explorer-alpha.spec.ts

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -149,7 +149,6 @@ describe('explorer-alpha', () => {
149149
'--position': '10,20',
150150
'--realm': 'custom-realm',
151151
'--local-scene': true,
152-
'--debug': false,
153152
'--dclenv': 'zone',
154153
'--skip-auth-screen': true,
155154
'--landscape-terrain-enabled': false,
@@ -177,7 +176,6 @@ describe('explorer-alpha', () => {
177176
expect(callArgs).toContain('position=10%2C20')
178177
expect(callArgs).toContain('dclenv=zone')
179178
expect(callArgs).toContain('local-scene=true')
180-
expect(callArgs).toContain('debug=true')
181179
expect(callArgs).toContain('hub=true')
182180
expect(callArgs).toContain('skip-auth-screen=true')
183181
expect(callArgs).toContain('open-deeplink-in-new-instance=true')
@@ -201,9 +199,7 @@ describe('explorer-alpha', () => {
201199
'/test',
202200
'open',
203201
expect.arrayContaining([
204-
expect.stringMatching(
205-
/decentraland:\/\/.*realm=default-realm.*position=5%2C10.*dclenv=org.*local-scene=true.*debug=true/
206-
)
202+
expect.stringMatching(/decentraland:\/\/.*realm=default-realm.*position=5%2C10.*dclenv=org.*local-scene=true/)
207203
]),
208204
{ silent: true }
209205
)

0 commit comments

Comments
 (0)