0.0.2 • Published 5 years ago

jost v0.0.2

Weekly downloads
7
License
MIT
Repository
github
Last release
5 years ago

Jost — Just Jost (not Jest)

NPM version

my-tests.js

#!/usr/bin/env node

import {beforeEach, afterEach, context, describe, expect, it} from 'jost';

describe('Jost', () => {
  it('expects', () => {
    expect(true).toBe(true);
  });
});

// etc...

Output of ./my-tests.js

Jost
  expects
0 errors, 1 example, 0 failures, 1 suite