A placeholder package for test utilities currently in development. Version 1.0.0 is the initial release with minimal functionality. This package serves as a sandbox for testing workflows and is not recommended for production use.
npm install testing-utilsVerified import paths — ran on the pinned version, not inferred.
Basic usage of createMock to create a spy/mock function and track calls.
Do not use in production; consider alternatives like jest.fn() or sinon.
Use import syntax or use a bundler that supports ESM.
Avoid using until package reaches stable release.
Migrate to actively maintained testing utilities like vitest or @jest/globals.
Use correct import: import { createMock } from 'testing-utils'Use ESM import: import testingUtils from 'testing-utils'
Do not use this package; choose an alternative.