@windingtree/sdk-test-utils
TypeScript icon, indicating that this package has built-in type declarations

1.2.3 • Public • Published

@windingtree/sdk-test-utils

The @windingtree/sdk-test-utils package is a utility package designed for testing purposes within the Winding Tree SDK. It extends the capabilities of the vitest test runner with a custom function for validating deep equality of objects, more features will be added later.

Installation

pnpm i @windingtree/sdk-test-utils

Key concepts

  • expectDeepEqual: This function is used to validate the deep equality of two objects. It compares two objects recursively and expects every single key in the first object to be equal to the corresponding key in the second object.

Usage

Here is a simplified example of how you can use the @windingtree/sdk-test-utils package:

import { test, expectDeepEqual } from '@windingtree/sdk-test-utils';

test('deep equality of objects', () => {
  const obj1 = {
    key1: 'value1',
    key2: {
      nestedKey1: 'nestedValue1',
      nestedKey2: 'nestedValue2',
    },
  };

  const obj2 = {
    key1: 'value1',
    key2: {
      nestedKey1: 'nestedValue1',
      nestedKey2: 'nestedValue2',
    },
  };

  expectDeepEqual(obj1, obj2);
});

Documentation

For full documentation and examples, visit windingtree.github.io/sdk

Testing

pnpm test

Contributing

Contribution guidelines

Readme

Keywords

none

Package Sidebar

Install

npm i @windingtree/sdk-test-utils

Weekly Downloads

0

Version

1.2.3

License

MIT

Unpacked Size

9.1 kB

Total Files

10

Last publish

Collaborators

  • kostysh
  • kvakes
  • tomashq