DEV Community

Cover image for Jasmine-based Ubiquitous Test Runner for Shared Codebases
jzombie
jzombie

Posted on

Jasmine-based Ubiquitous Test Runner for Shared Codebases

Sometimes you may need to write code which runs in a browser as well as Node.js, and most test runners do not support this functionality out of the box, in order to run unit tests across all environments without duplicating the tests per environment.

So I made a little project with the number one goal of being a "ubiquitous" test runner, running tests against real browsers as well as Node.js w/o modifying tests to run between environments.

https://github.com/zenOSmosis/karma-jasmine-typescript-boilerplate

Why not Playwright, Jest, or...?

Ubiquity: Test code in multiple environments without duplicating test cases or using multiple runners.

The goals of this project are to execute the testing code directly in the individual environments w/o using a web driver. This way, the same tests can execute across all major browsers as well as Node.js.

This use case might not be suitable for all projects but makes it better suited for code that is intended to run across all environments: i.e. algorithms, custom WebSocket implementations, etc.

So tests like the following can run regardless of which environment they are in, w/o needing to be eval-ed through a web driver message request.

import {fibonacci, isBrowser} from "../src/index";

describe("basic tests", () => {
  it("determines if running in browser", () => {
    expect(isBrowser()).toBe(typeof window !== undefined);
  });

  it("generates fibonacci", () => {
    expect(fibonacci(10)).toEqual([0, 1, 1, 2, 3, 5, 8, 13, 21, 34, 55]);
  });
});
Enter fullscreen mode Exit fullscreen mode

Take a look at the included tests for more examples as well as the example CI pipeline.

More information is below regarding additional considerations for Jest.

Running Tests

Note, the default configuration runs the same tests across the environments you choose.

Browser and Node tests:

$ npm run test
Enter fullscreen mode Exit fullscreen mode

Browser-only tests:

$ npm run test:browser
Enter fullscreen mode Exit fullscreen mode

Node-only tests:

$ npm run test:node
Enter fullscreen mode Exit fullscreen mode

Test Coverage Reporting

Code coverage is provided by Istanbul.

Default settings are as follows:

  • Browser code coverage is generated automatically and placed in {root}/coverage as HTML files
  • Node.js test coverage reports are placed in .nyc_output as JSON files

Some Credits

Portions of this were borrowed from:

Misc

As much as I'd like to try to get Jest to work instead (for running tests in a browser as well), here's a thread that indicates it may be a bit difficult to accomplish: https://github.com/facebook/jest/issues/139

This post shows some polyfills to sort of fake it: https://github.com/tom-sherman/blog/blob/main/posts/02-running-jest-tests-in-a-browser.md

Playwright was also added as a dependency to help locate the WebKit bin path on the host system (see: Headless Webkit with Playwright).

Roadmap

In the future I'd like to add configuration options for BrowserStack and potentially Sauce Labs.

Oldest comments (0)