1.0.0 • Published 7 years ago

electron-test-utils v1.0.0

Weekly downloads
19
License
MIT
Repository
-
Last release
7 years ago

Electron Test Utils

Build Status npm version npm license status

What is it?

Electron test utils is a small utility to help test Electron apps that depend on currently untestable native desktop interactions. For instance the "dialog" module currently makes your code untestable if you use it.

How do I use it?

npm i --save-dev electron-test-utils

It's really easy to use and integrates nicely into most test suites.

Your tests need access to the Electron API's, the easiest way to achieve this is to use electron-mocha

Note: If you are running your tests with the --renderer flag in electron-mocha you also need to use the --require-main flag and point it at electron-test-utils/build/main_inject

import { initialize, reset, utils } from 'electron-test-utils';

describe('my wonderful test suite', () => {
  before(() => {
    initialize();
  });

  it('should open a file after prompting the user', () => {
    utils.dialog.nextOpenDialogCall(['path/to/file']);
    // If this function requires openDialog it will be given ['path/to/file']
    const file = myOpenFileFn();
    file.should.be.equal('file_content');
  });

  afterEach(() => {
    reset();
  });
});

Note the two magic functions we call:

  • initialize() hooks into Electron to make our API's work.
  • reset() resets all return values and call values so that you get a clean slate during each test.

So what can it do?

Currently we only support the following API's. Check out our module docs below.

1.0.0

7 years ago

0.2.2

8 years ago

0.2.1

8 years ago

0.2.0

8 years ago

0.1.0

8 years ago

0.0.1

8 years ago