
Security News
GitHub Actions Pricing Whiplash: Self-Hosted Actions Billing Change Postponed
GitHub postponed a new billing model for self-hosted Actions after developer pushback, but moved forward with hosted runner price cuts on January 1.
@moyal/js-test
Advanced tools
A lightweight, dependency-free JavaScript testing utility. This project is framework-agnostic and usable in both browser and Node.js environments.
A lightweight, dependency-free JavaScript testing utility. This project is framework-agnostic and usable in both browser and Node.js environments.
npm i @moyal/js-test
See also quick-start folder for the source code of the examples.
import {MultiLevelAutoNumbering, TestGroup} from '@moyal/js-test';
new TestGroup("MLA Numbered Tests")
.areNotEqual("Validate inequality", 1, 2)
.areEqual("Test strings", "foo", "foo")
.groupStart("Nested test group")
.isFalse("This is lie", () => 1 == 2)
.areEqual("Test B2", "Hello World!", () => "Hello World!")
.groupClose();
.areEqual("Test booleans", true, true)
.areEqual("Test C", 123, 123)
.run(true, new MultiLevelAutoNumbering());
In this quick start example:
<script type="module">
import {Test as tst} from '@moyal/js-test';
tst.isTrue("1 + 1 === 2", 1 + 1 === 2);
</script>
Use the library directly from a CDN like jsDelivr or unpkg:
<!-- Minified version -->
<script type="module">
import "https://cdn.jsdelivr.net/npm/@moyal/js-test@2.1.7/dist/moyal.test.umd.min.js";
MoyalTest.Test.isTrue("CDN test", true);
</script>
<!-- Full version (non-minified) -->
<script type="module">
import "https://cdn.jsdelivr.net/npm/@moyal/js-test@2.1.7/dist/moyal.test.umd.js";
</script>
Or using unpkg:
<script type="module">
import "https://unpkg.com/@moyal/js-test@2.1.7/dist/moyal.test.umd.min.js";
</script>
Note: When using CDN import, MoyalTest exposes all types globally, including Test, TestGroup, SequentialText, AutoNumbering, and MultiLevelAutoNumbering (full list below).
import {Test as tst} from '@moyal/js-test';
tst.isTrue("Boolean check", 7 === 6 + 1);
tst.areEqual("Compare values", 10, 5 + 5);
tst.throws("Expect error", () => { throw new Error("Oops") });
import {TestGroup} from '@moyal/js-test';
const group = new TestGroup("My Test Group");
group
.isTrue("Truthy check", true)
.areEqual("Math", 2, 1 + 1)
.throws("Throw check", () => { throw new Error(); })
.run(true);
import {Test as tst} from '@moyal/js-test';
tst.areEqual(name, expected, actual, comparer?, write?);
tst.areNotEqual(name, notExpected, actual, comparer?, write?);
tst.isTrue(name, actual, write?);
tst.isFalse(name, actual, write?);
tst.isNull(name, actual, write?);
tst.isNotNull(name, actual, write?);
tst.isDefined(name, actual, write?);
tst.isUndefined(name, actual, write?);
tst.throws(name, fn, errorPredicate?, thisArg?, write?);
tst.noThrows(name, fn, thisArg?, write?);
tst.sequencesAreEqual(name, expectedIterable, actualIterable, itemComparer?, write?);
group.isTrue(name, actual)
.areEqual(name, expected, actual)
.throws(name, fn)
.groupStart("Nested")
.isFalse(name, actual)
.groupClose();
import {SequentialText} from '@moyal/js-test';
const seq = new SequentialText("Test {0}", 1);
seq.next(); // "Test 1"
seq.next(); // "Test 2"
or start with different value:
import {SequentialText} from '@moyal/js-test';
const seq = new SequentialText("Test {0}", 8);
seq.next(); // "Test 8"
seq.next(); // "Test 9"
import {AutoNumbering} from '@moyal/js-test';
const an = new AutoNumbering();
an.next("Step A"); // "1. Step A"
an.next("Step B"); // "2. Step B"
import {MultiLevelAutoNumbering} from '@moyal/js-test';
const ml = new MultiLevelAutoNumbering();
ml.next("Root"); // "1. Root"
ml.nest().next("Child"); // "1.1. Child"
ml.next("Child"); // "1.2. Child"
ml.next("Child"); // "1.3. Child"
ml.nest().next("Child"); // "1.3.1. Child"
ml.next("Child"); // "1.3.2. Child"
ml.unnest().next("Child"); // "1.4. Child"
ml.next("Child"); // "1.5. Child"
ml.unnest().next("Root2"); // "2. Root2"
import {MultiLevelAutoNumbering, TestGroup} from '@moyal/js-test';
const ml = new MultiLevelAutoNumbering();
const group = new TestGroup("MLA Numbered Tests");
group.areEqual(ml.next("Test A"), 1, 1)
.areEqual(ml.nest().next("Test B1"), "foo", "foo")
.areEqual(ml.next("Test B2"), true, true)
.unnest().areEqual(ml.next("Test C"), 123, 123)
.run(true);
Usually you'll call nest() and unnest() when starting or closing a nested test group.
Or even simpler:
import {MultiLevelAutoNumbering, TestGroup} from '@moyal/js-test';
const group = new TestGroup("MLA Numbered Tests");
group.areEqual("Test A", 1, 1)
.areEqual("Test B1", "foo", "foo")
.areEqual("Test B2", true, true)
.areEqual("Test C", 123, 123)
.run(true, new MultiLevelAutoNumbering());
💡 new MultiLevelAutoNumbering() creates a fresh auto-numbering context for the test group and its descendents.
Override console output with your custom logger:
import {Test, LoggerBase} from '@moyal/js-test';
class MyLogger extends LoggerBase {
/* implement logger methods */
log(message, color, ...args) { /* ... */}
info(message, color, ...args) { /* ... */ }
warn(message, color, ...args) { /* ... */ }
error(message, color, ...args) { /* ... */ }
group(label, color) { /* ... */ }
groupCollapsed(label, color) { /* ... */ }
groupEnd() { /* ... */ }
}
Test.logger = new MyLogger();
Note The logger methods are chainable.
consoleconsole with indentation and ANSI coloringTest - Contains static method for testing.TestBase - Derive your class from TestBase to create custom test.Assert - Base class for assertions.IsDefined - Asserts that the specified evaluates to defined value.IsUndefined - Asserts that the specified evaluates to undefined value.IsFalse - Asserts that the specified evaluates to false.IsTrue - Asserts that the specified evaluates to false.IsNull - Asserts that the specified evaluates to null.IsNotNull - Asserts that the specified evaluates to non null value.AreEqual - Asserts that the specified values evaluations are equal.AreNotEqual - Asserts that the specified values evaluations are not equal.ThrowsBase - Base class to test error throwing.Throws - Asserts that the specified throws error.NoThrows - Asserts that the specified does not throw error.SequencesAreEqual - Asserts that the specified sequences are equal.TestGroup - Groups and enables chaining of multiple tests.SequentialText - Utility class to generate sequential text.AutoNumbering - Utility class to generate automatic incremented number.MultiLevelAutoNumbering - Utility class to generate automatic incremented number.LoggerBase - Base class for logger.SimpleLogger - Simple logger for unknown environments.BrowserLogger - Console logger for browser.NodeLogger - Console logger for NodeJS.The namespace MoyalTest is also exported which wrapping all these types.
Access the library version directly:
import * as myLib from "@moyal/js-test";
myLib.Version // → e.g., "2.1.7"
Example files can be found under examples folder and/or test/units folder
(You can treat these test files as examples)
MIT License - free to use, modify, and distribute.
Ilan Moyal Website: https://www.moyal.es
GitHub: IlanMoyal
X: i_moyal
LinkedIn: ilanam
FAQs
A lightweight, dependency-free JavaScript testing utility. This project is framework-agnostic and usable in both browser and Node.js environments.
We found that @moyal/js-test demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Security News
GitHub postponed a new billing model for self-hosted Actions after developer pushback, but moved forward with hosted runner price cuts on January 1.

Research
Destructive malware is rising across open source registries, using delays and kill switches to wipe code, break builds, and disrupt CI/CD.

Security News
Socket CTO Ahmad Nassri shares practical AI coding techniques, tools, and team workflows, plus what still feels noisy and why shipping remains human-led.