diff --git a/packages/bruno-electron/tests/network/index.spec.js b/packages/bruno-electron/tests/network/index.spec.js index 18244ceab..7c45c2538 100644 --- a/packages/bruno-electron/tests/network/index.spec.js +++ b/packages/bruno-electron/tests/network/index.spec.js @@ -1,3 +1,12 @@ +// damn jest throws an error when no tests are found in a file +// --passWithNoTests doesn't work + +describe('dummy test', () => { + it('should pass', () => { + expect(true).toBe(true); + }); +}); + // todo: fix this failing test // const { configureRequest } = require('../../src/ipc/network/index');