Skip to content

Commit 2ad2dc3

Browse files
committed
Undo logging and try to fix linux tests
1 parent 0a70e42 commit 2ad2dc3

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

packages/desktop/src/main/main.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -396,7 +396,7 @@ app.on('ready', async () => {
396396
backendProcess = fork(backendBundlePath, forkArgvs, {
397397
env: {
398398
NODE_OPTIONS: '--experimental-global-customevent',
399-
DEBUG: 'backend*,quiet*,state-manager*,desktop*,utils*,identity*,common*,libp2p*,blockstore*',
399+
DEBUG: 'backend*,quiet*,state-manager*,desktop*,utils*,identity*,common*,libp2p:connection-manager:auto-dial',
400400
COLORIZE: 'true',
401401
},
402402
})

packages/e2e-tests/src/tests/oneClient.test.ts

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,9 @@ describe('One Client', () => {
3333
beforeAll(async () => {
3434
app = new App()
3535
await app.open()
36+
const processData = app.buildSetup.getProcessData()
37+
dataDirPath = processData.dataDirPath
38+
resourcesPath = processData.resourcesPath
3639
})
3740

3841
afterAll(async () => {

0 commit comments

Comments
 (0)