Skip to content

Instantly share code, notes, and snippets.

@apklinker
apklinker / jest-testing.md
Last active July 6, 2018 21:59
Basic templates for testing with Jest

Jest Testing Templates

Basic building blocks

describe('some set of tests/its', _ => {
  it('should be something', _ => {
    expect(true).toBe(true);
  });
});