SkillAgentSearch skills...

Titef

🌠 A tiny, lightning-fast, zero-dependecies JavaScript test framework 🌠

Install / Use

/learn @shikaan/Titef
About this skill

Quality Score

0/100

Supported Platforms

Universal

README

<p align="center"> <img src="https://preview.ibb.co/dBFOtc/logo.png" alt="Titef logo" width="320" /> <p align="center"> 🌠 A tiny, lightning-fast, zero-dependecies JavaScript test framework 🌠 </p> </p> <p align="center"> <a href="https://travis-ci.org/shikaan/titef"> <img src="https://travis-ci.org/shikaan/titef.svg?branch=master" alt="Build Status"> </a> <a href="https://badge.fury.io/js/titef"> <img src="https://badge.fury.io/js/titef.svg" alt="npm version" height="18"> </a> </p>

🎯 Why you should use it?

⚡ Unbelievably fast (check it here)

👌 ~2.9Kb (gzipped) of whatever you need in most of the cases

🏄 Close-to-zero migration effort from Mocha, Jasmine, Jest;

📖 Lots of docs make it user and contributor friendly

📥 Installation

npm install --save titef

👓 Usage

npx titef test/awesome.specs.js

Older npm:

node_modules/.bin/titef test/awesome.specs.js

👣 Getting started

Your first test file

// test.js

const assert = require('assert');

const truthy = () => true;

suite('truthy', () => {
  spec('should return true', () => {
    assert.ok(truthy());
  });
  
  spec('should not return false', () => {
    assert.notDeepEqual(truthy(), false);
  });
});

Your first test run

$ npx titef ./test.js

For further information about writing and running tests in Titef take a look at Titef: Recipes to get up and running in no time.

🎁 Contributing

Contributors are well welcomed!

Here you'll find all the information you need to start to get going. A small preview:

View on GitHub
GitHub Stars18
CategoryDevelopment
Updated1y ago
Forks0

Languages

JavaScript

Security Score

80/100

Audited on Mar 30, 2025

No findings