Skip to content

dpirek/vanilla-js-unit-test

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

2 Commits
 
 
 
 

Repository files navigation

Vanilla JS Unit Testing "framework"

This is a minimalistic "jest-style" unit testing framework.

Example Usage

import { describe, test, expect } from './lib/test.js';

describe('sample test', () => {
  test('true equal to true', () => {
    expect(true).toEqual(true);
  });
})

About

This is a minimalistic "jest-style" unit testing framework.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors