All Projects → NathanCotrim → estj

NathanCotrim / estj

Licence: MIT license
EstJ is my own test framework!

Programming Languages

javascript
184084 projects - #8 most used programming language

Projects that are alternatives of or similar to estj

PixelTest
Fast, modern, simple iOS snapshot testing written purely in Swift.
Stars: ✭ 56 (+330.77%)
Mutual labels:  tdd, tests, test-framework, testing-tools
Mocha
☕️ simple, flexible, fun javascript test framework for node.js & the browser
Stars: ✭ 20,986 (+161330.77%)
Mutual labels:  tdd, test-framework, testing-tools
Testfx
MSTest V2 framework and adapter
Stars: ✭ 391 (+2907.69%)
Mutual labels:  tdd, test-framework, testing-tools
Telegraf-Test
Telegraf Test - Simple Test ToolKit of Telegram Bots
Stars: ✭ 22 (+69.23%)
Mutual labels:  tests, test-framework, testing-tools
evolutio
ab testing framework with automated code removing
Stars: ✭ 15 (+15.38%)
Mutual labels:  test-framework, testing-tools
ts-mock-imports
Intuitive mocking library for Typescript class imports
Stars: ✭ 103 (+692.31%)
Mutual labels:  tests, testing-tools
BadMedicine
Library and CLI for randomly generating medical data like you might get out of an Electronic Health Records (EHR) system
Stars: ✭ 18 (+38.46%)
Mutual labels:  tests, testing-tools
mocha-wrap
Fluent pluggable interface for easily wrapping `describe` and `it` blocks in Mocha tests.
Stars: ✭ 54 (+315.38%)
Mutual labels:  tests, testing-tools
Testdeck
Object oriented testing
Stars: ✭ 206 (+1484.62%)
Mutual labels:  tdd, testing-tools
EyeJS
A JavaScript testing framework for the real world
Stars: ✭ 68 (+423.08%)
Mutual labels:  test-framework, testing-tools
playwright-test
Run unit tests with several runners or benchmark inside real browsers with playwright.
Stars: ✭ 81 (+523.08%)
Mutual labels:  tests, testing-tools
Bandit
Human-friendly unit testing for C++11
Stars: ✭ 240 (+1746.15%)
Mutual labels:  tdd, test-framework
Mockito Scala
Mockito for Scala language
Stars: ✭ 231 (+1676.92%)
Mutual labels:  tdd, testing-tools
eat
Json based scenario testing tool(which can have test for functional and non-functional)
Stars: ✭ 41 (+215.38%)
Mutual labels:  test-framework, testing-tools
Junit Dataprovider
A TestNG like dataprovider runner for JUnit with many additional features
Stars: ✭ 226 (+1638.46%)
Mutual labels:  tdd, testing-tools
regression-testing
Regression testing in Elm!
Stars: ✭ 22 (+69.23%)
Mutual labels:  tests, testing-tools
testing-framework
TYPO3 testing framework for core and extensions
Stars: ✭ 44 (+238.46%)
Mutual labels:  tests, test-framework
oletus
Minimal ECMAScript Module test runner
Stars: ✭ 43 (+230.77%)
Mutual labels:  tdd, test-framework
Catch2
A modern, C++-native, test framework for unit-tests, TDD and BDD - using C++14, C++17 and later (C++11 support is in v2.x branch, and C++03 on the Catch1.x branch)
Stars: ✭ 14,330 (+110130.77%)
Mutual labels:  tdd, test-framework
Lightbdd
BDD framework allowing to create easy to read and maintain tests.
Stars: ✭ 195 (+1400%)
Mutual labels:  tdd, test-framework


EstJ



🍪 Description

It's a simple javascript test framework, with purpose be able people execute tests simply and fast!


🌉 Usage

It will find all files like it: *.test.js, just run:

estj

  • To validate the tests it uses the nodejs assert, but its globally, you do not need to require it;
  • To create a test use the function it();
  • You can use beforeEach, it will execute before all tests;

Example:
beforeEach(() => {
    console.log('I am executing before a test')
})

it('should assert if 1 === 1', () => {
    assert.equal(1, 1)
})

🎗️ See It

1632971516055.mp4

🎠 Author

Nathan Cotrim - MIT

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].