1.2.3 • Published 4 months ago

@windingtree/sdk-test-utils v1.2.3

Weekly downloads
-
License
MIT
Repository
github
Last release
4 months ago

@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

1.2.3-beta.0

4 months ago

1.2.3

4 months ago

1.2.2

5 months ago

1.2.1

6 months ago

1.2.0

7 months ago

1.2.0-beta.1

7 months ago

1.2.0-beta.0

9 months ago

1.1.0

10 months ago

1.1.0-beta.3

10 months ago

1.1.0-beta.2

10 months ago

1.1.0-beta.1

10 months ago

1.1.0-beta.0

10 months ago