Coder Social home page Coder Social logo

eladcandroid / xv Goto Github PK

View Code? Open in Web Editor NEW

This project forked from typicode/xv

0.0 1.0 0.0 281 KB

:x: :heavy_check_mark: Modern and low maintenance test library/CLI. Great for small and medium projects.

License: Other

Shell 3.95% JavaScript 96.05%

xv's Introduction



xv


Node.js CI

Setting up and maintaining a test framework can sometimes be complex and time consuming. I've created xv to be a low maintainance, easy to setup and learn test lib/CLI. Great for small and medium projects.

Features

  • Lightweight and fast
  • No config, only one function test(), simple
  • Pure ESM package
  • Used in lowdb and steno

Requires Node v14.13.1+

Install

Install xv:

npm install xv --save-dev
yarn add xv --dev

Usage

Create a test file src/add.test.js and use Node's built-in assert module.

If you need your tests to be compatible with Node 14 and 16:

import { strict as assert } from 'assert' 
import { test } from 'xv'

await test('should add', () => {
  assert.equal(1 + 2, 3)
})

If you're working with Node 16 only, you can simplify your code:

import { equal } from 'assert/strict' 
import { test } from 'xv'

await test('should add', () => {
  equal(1 + 2, 3)
})

In package.json, edit test script:

{
  "scripts": {
    "test": "xv 'src/**/*.test.js'"
   }
}
npm test             # Run all .test.js files in src/    
node src/add.test.js # Run specific test file

That's all there is to know... for real :)

Note xv is a pure ESM package, read this if you're getting ERR_REQUIRE_ESM error.

Early access for Sponsors

For a limited time xv is available to Sponsors only. Once the goal of 70 sponsors is reached (currently 55), I'll release it under MIT for everyone ๐ŸŽ‰

If you like this project and my work, please help me reach this goal by becoming a sponsor here. Thank you!

Note: if you're already sponsoring me via husky, feel free to use xv in any type of project.

TypeScript

If you're using TypeScript, compile your .ts and run xv directly on compiled .js files.

Assuming you have the following tsconfig.json:

{
  "compilerOptions": {
    "outDir": "./lib",
    "module": "ESNext"
  }
}

Edit package.json to exclude test files from being published andrun tsc before xv:

{
  "files": [
    "lib",
    "!lib/**/*.test.*" // exclude test files
  ],
  "scripts": {
    "build": "rm -rf lib && tsc",
    "test": "npm run build && xv 'lib/**/*.test.js'"
  }
}

xv's People

Contributors

typicode avatar

Watchers

James Cloos avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.