Asserts the equality of JavaScript strings and objects with human-friendly, Bash-colored diffs as error messages
Power Assert output formatter
Synchronous validation of a path existing either as a file or as a directory.
correct invalid SPDX expressions
Drop-in replacement for assert to give diff on deepEqual.
To compare dom and shadow dom trees. Part of open-wc recommendations
minimalistic-assert ===
No description provided.
The assert module from Node.js, for the browser.
Parses, serializes, and manipulates MIME types, according to the WHATWG MIME Sniffing Standard
assert with status codes
A robust, ES3 compatible, "has own property" predicate.
Fast Javascript text diff
Extra assertions on top of node's assert module
Is this value a JS ArrayBuffer?
Is this value a JS SharedArrayBuffer?
`Object.getOwnPropertyDescriptor`, but accounts for IE's broken implementation.
Which kind of boxed JS primitive is this?
Is this specifier a node.js core module?
Is this value a JS Typed Array? This module works cross-realm/iframe, does not depend on `instanceof` or mutable properties, and despite ES6 Symbol.toStringTag.
What is the type of this builtin JS value?
Robustly get the length of a Typed Array
Compare items in two sequences to find a longest common subsequence
`Object.defineProperty`, but not IE 8's broken one.
Save screen shots and track changes with graphical diff
Make your assertion diffs smarter
JSON assertions that help you find exactly what has changed with your JSON API without having to manually diff large objects
Assert iOS version string updated. Danger plugin.
Asserts the versionName or versionCode strings have been changed in your Android project.
Switches lets you turn on and off parts of your code from the commandline. There's a defaults.yml and a current.yml in the background. For example: app/models/user.rb after_create :subscribe_email if Switches.campaign_monitor? >> Switches.campaign_monitor? # => false $ rake switches:on[campaign_monitor] >> Switches.campaign_monitor? # => true $ rake switches:reset # goes back to default.yml $ rake switches:diff # shows diff b/w current.yml and default.yml $ rake s:d # alias for switches:diff $ rake s:c # alias for switches:list_current etc. It's inspired by ActiveSupport's StringInquirer (e.g. Rails.development?) and traditional compile-time assertions.