objection-transactional-tests
TypeScript icon, indicating that this package has built-in type declarations

0.2.1 • Public • Published

Objection transactional tests

Run tests in Jest or Mocha in Objection.js transactions. This starts a new transaction at the beginning of each tests and does a rollback at the end of it, reverting the database to the state it was in before the test.

Usage

import { transactionPerTest } from "objection-transactional-tests";

describe("examples", () => {
  transactionPerTest();
  it("database interactions", () => {
    // do something that touches database
  });
});

Note that any database changes done in beforeAll won't be cleaned up.

The setup can be added to test setup script to apply it automatically for all tests. This will ensure that no test pollute the test database, but also adds overhead to tests that do not use the database.

Package Sidebar

Install

npm i objection-transactional-tests

Weekly Downloads

11

Version

0.2.1

License

ISC

Unpacked Size

7.19 kB

Total Files

11

Last publish

Collaborators

  • lautis