0.1.6 • Published 9 months ago

cv3-test v0.1.6

Weekly downloads
14
License
Apache-2.0
Repository
github
Last release
9 months ago

avatar

cv3-test

Simple testing for ES6.

cv3-test Version Badge Downloads Badge github github Size badge Apache-2.0 Licence Badge Github Actions

screenshot

Install

$ npm install cv3-test

Usage

Simply extend the cv3-test/Test class. Name your test methods with the prefix test.

import { Test } from 'cv3-test/Test';

export class ExampleTest extends Test
{
    testOneSuccess()
    {
        this.assert(0 === 0, '0 is not equal to 0!');
    }
}

Running Tests

CLI

Install the package globally to use the cvtest command:

$ npm install -g cv3-test

Run the cvtest command in any directory to automatically scan for files ending in ...Test.js (case sensitive). Any files found will be included and the system will look for tests in the class with same name as the file it resides in (minus the .js extension).

$ cvtest

Javascript

Use the static run function on the Test class to execute your tests. Just pass the test classes you want to run as parameters.

import { Test } from 'cv3-test/Test';

import { FooTest } from './FooTest';
import { BarTest } from './BarTest';
import { BazTest } from './BazTest';

Test.run(FooTest, BarTest, BazTest);

Promise-based tests

Test methods can return promises, to allow for testing of async behavior. Assertations can appear inside and outside the promises, and the framework will wait for the promise to complete before moving on.

import { Test } from 'cv3-test/Test';

export class PromiseTest extends Test
{
    testPromise()
    {
        return new Promise((accept, reject)=>{

            this.assert(0 === 0, '0 is not equal to 0!');

            setTimeout(()=>{

                this.assert(0 === 0, '0 is not equal to 0!');

                accept('Accepted!');
            }, 150);

        });
    }
}

License

cv3-test © Sean Morris 2019 - 2020

All code in this package is relased under the Apache 2.0 licence.

0.1.0

9 months ago

0.1.2

9 months ago

0.1.1

9 months ago

0.1.4

9 months ago

0.1.3

9 months ago

0.1.6

9 months ago

0.1.5

9 months ago

0.0.17-a

2 years ago

0.0.16

2 years ago

0.0.17

2 years ago

0.0.15

2 years ago

0.0.14

2 years ago

0.0.13

2 years ago

0.0.12

4 years ago

0.0.11

5 years ago

0.0.10

5 years ago

0.0.9

5 years ago

0.0.8

5 years ago

0.0.7

5 years ago

0.0.6

5 years ago

0.0.5

5 years ago

0.0.4

6 years ago

0.0.3

6 years ago

0.0.2

6 years ago

0.0.1

6 years ago