0.0.2 • Published 2 years ago

@test-fixtures/js v0.0.2

Weekly downloads
-
License
ISC
Repository
github
Last release
2 years ago

npm node

@test-fixtures/js

JS test fixture module for testing a module with dependency.

Install

npm i -D @test-fixtures/js

Usage

const { lorem, libA, libB } = require('@test-fixtures/js');

console.log('Lorem: ', lorem.getTitle()); // Lorem Ipsum
console.log('Lib 1: ', libA.getName());   // Lib A
console.log('Lib 2: ', libB.getName());   // Lib B