All Projects → WebReflection → tressa

WebReflection / tressa

Licence: MIT license
Little test utility

Programming Languages

javascript
184084 projects - #8 most used programming language

Projects that are alternatives of or similar to tressa

Power assert ex
Power Assert in Elixir. Shows evaluation results each expression.
Stars: ✭ 201 (+1016.67%)
Mutual labels:  testing-tools, assert
Assert
A collection of convenient assertions for Swift testing
Stars: ✭ 69 (+283.33%)
Mutual labels:  testing-tools, assert
karate
Test Automation Made Simple
Stars: ✭ 6,384 (+35366.67%)
Mutual labels:  testing-tools
WebUpdate
Simple JSON based WebUpdate
Stars: ✭ 32 (+77.78%)
Mutual labels:  simple
AppImageUpdater
AppImage Updater for Humans built with QML/C++ with Qt5 ❤️.
Stars: ✭ 31 (+72.22%)
Mutual labels:  simple
jest-gql
✅🚀GraphQL based tests for Jest and Apollo
Stars: ✭ 33 (+83.33%)
Mutual labels:  testing-tools
cs.js
Computer Science Data Structures and Algorithms in JavaScript ( Node.JS, ES ) in simple, clean, reusable code
Stars: ✭ 86 (+377.78%)
Mutual labels:  simple
Sqlable
Swift library for making storing data in a SQLite database simple and magic-free
Stars: ✭ 83 (+361.11%)
Mutual labels:  simple
WHMCS-Discord-Notifications
A hook to push a range of different WHMCS notifications instantly to a Discord channel.
Stars: ✭ 52 (+188.89%)
Mutual labels:  simple
zola-sam
🌐 A Simple and Minimalist theme with a focus on typography and content.
Stars: ✭ 32 (+77.78%)
Mutual labels:  simple
tb-grid
tb-grid is a super simple and lightweight 12 column responsive grid system utilizing css grid.
Stars: ✭ 19 (+5.56%)
Mutual labels:  simple
assert matches
Provides macro `assert_matches` for testing pattern matching
Stars: ✭ 51 (+183.33%)
Mutual labels:  assert
simple-ransomware
Simple ransomware to troll your friends. Encrypt and Decrypt a Windows computer using a simple xor encryption which is pretty basic!
Stars: ✭ 29 (+61.11%)
Mutual labels:  simple
merlin
Testing and Benchmarking framework for deno 🧙‍♂️
Stars: ✭ 46 (+155.56%)
Mutual labels:  testing-tools
BJOTPViewController
Entering OTP made simpler.
Stars: ✭ 42 (+133.33%)
Mutual labels:  simple
ctest
A simple portable C test runner
Stars: ✭ 17 (-5.56%)
Mutual labels:  testing-tools
Blog.Core
Simple ASP.NET Core static blog engine
Stars: ✭ 15 (-16.67%)
Mutual labels:  simple
ByteCopy
Simple C99 program and API for copying files.
Stars: ✭ 16 (-11.11%)
Mutual labels:  simple
Assertion
The power of Respect\Validation into an assertion library.
Stars: ✭ 23 (+27.78%)
Mutual labels:  assert
Symfony-code-snippets
Over 100 Symfony Code Snippets for PhP code And Over 80 Twig Code Snippets. Just type the letters 'sf' to get a list of all available Symfony Code Snippets. For Twig Just Type the Tag name and you will get AutoCompletion.
Stars: ✭ 15 (-16.67%)
Mutual labels:  assert

tressa build status

A little test utility from Andrea Giammarchi and Claudio D'angelis born after this post and this tweet.

Compatible with NodeJS 0.8 and higher.

var test = require('tressa');

test.title('My Library');

// synchronous
test(condition, 'optional comment');

// asynchronous
test
  .async(done => {
    setTimeout(() => {
      test(condition, 'optional comment');
      done();
    });
  })
  .then(() => {
    console.log("That's it!");
  });

(C) 2017 MIT Style License

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].