0.0.5 • Published 4 years ago

umbra-assert v0.0.5

Weekly downloads
3
License
MIT
Repository
github
Last release
4 years ago

Umbra Assert

Umbra assertion is an assertion framework built to be expressive and simple. It's focus is on making writing tests easier and less error prone. Let's take a look at some simple examples.

Features

  • Automatic deep equals checks
  • Expect and Assert style expectations

Examples

String comparison

const actual = "hello " + "world";
Assert.equals(actual, "hello world");
expect(actual).toBe("hello world");

Object comparison

const actual = {
    
};
Assert.equals(actual, "hello world");
expect(actual).toBe("hello world");
0.0.5

4 years ago

0.0.4

4 years ago

0.0.3

4 years ago

0.0.2

4 years ago

0.0.1

4 years ago