Veve

Quick Start

Getting started with veve.

Installation

You can install Veve globally using npm:

npm i -g veve

Alternatively, use our interactive setup wizard:

Terminal
npx veve-setup

Getting Started

Code examples are configured using twosslah. Feel free to click around on it!

Writing Your First Test

Create a new TypeScript file and write your test:

test.test.ts
import { assert } from "veve";
 
const add = (a: number, b: number): number => a + b;
 
it("should add two numbers", () => {
    assert(add(1, 2)).toBe(3)
});
 
run();

Running Tests

Execute your tests using the veve command:

Terminal
veve

Enjoy 🎉

That's all you need to get started! No additional configuration or setup required.

On this page