![PyPI Now Supports iOS and Android Wheels for Mobile Python Development](https://cdn.sanity.io/images/cgdhsj6q/production/96416c872705517a6a65ad9646ce3e7caef623a0-1024x1024.webp?w=400&fit=max&auto=format)
Security News
PyPI Now Supports iOS and Android Wheels for Mobile Python Development
PyPI now supports iOS and Android wheels, making it easier for Python developers to distribute mobile packages.
assert-deep-strict-equal
Advanced tools
Asynchronous assert fails in Mocha you can see and don't timeout
<img src=https://centerkey.com/graphics/center-key-logo.svg align=right width=200 alt=logo>
Asynchronous assert fails in Mocha you can see and don't timeout
Install package for node:
$ npm install --save-dev assert-deep-strict-equal
Import into your Mocha spec file:
import { assertDeepStrictEqual } from 'assert-deep-strict-equal';
const actual = { ingredient: 'sugar', units: 'grams', amount: 100 };
const expected = { ingredient: 'sugar', units: 'grams', amount: 100 };
assertDeepStrictEqual(actual, expected, done);
The third parameter for the done
callback is optional:
assertDeepStrictEqual(actual, expected); //synchronous test case
describe('Star Wars API result for spaceship #3', () => {
it('is a Star Destroyer', (done) => {
const url = 'https://swapi.py4e.com/api/starships/3/';
const handleData = (data) => {
const actual = {
name: data.name,
model: data.model,
manufacturer: data.manufacturer,
};
const expected = {
name: 'Star Destroyer',
model: 'Imperial I-class Star Destroyer',
manufacturer: 'Kuat Drive Yards',
};
assertDeepStrictEqual(actual, expected, done);
};
fetchJson.get(url, { format: 'json' }).then(handleData);
});
});
Commands to run the above Star Destroyer example and others in examples.spec.js:
$ cd assert-deep-strict-equal
$ npm install
$ npm run examples
<img src=https://raw.githubusercontent.com/center-key/assert-deep-strict-equal/main/examples.png
width=800 alt=screenshot>
Note that the assertion failure does not cause a timeout and the test case error is easy to see and interpret.
The value of the name
field is "BOGUS!"
(red), but it was expected to be "payapa-berry"
(green).
FAQs
Asynchronous assert fails in Mocha you can see and don't timeout
The npm package assert-deep-strict-equal receives a total of 65 weekly downloads. As such, assert-deep-strict-equal popularity was classified as not popular.
We found that assert-deep-strict-equal demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 0 open source maintainers 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
PyPI now supports iOS and Android wheels, making it easier for Python developers to distribute mobile packages.
Security News
Create React App is officially deprecated due to React 19 issues and lack of maintenance—developers should switch to Vite or other modern alternatives.
Security News
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.