Skip to content

Instantly share code, notes, and snippets.

@qunabu
Created November 26, 2020 09:15
Show Gist options
  • Save qunabu/0884d5f2d3136c45998d3c66ee54f39a to your computer and use it in GitHub Desktop.
Save qunabu/0884d5f2d3136c45998d3c66ee54f39a to your computer and use it in GitHub Desktop.
Test jednostkowy
// app
const add = (a, b) => a + b;
// TEST. framework jest
expect(add(2, 2)).toBe(4);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment