
Security News
PEP 810 Proposes Explicit Lazy Imports for Python 3.15
An opt-in lazy import keyword aims to speed up Python startups, especially CLIs, without the ecosystem-wide risks that sank PEP 690.
expect-html-equal
Advanced tools
Extension to expect to compares two HTML snippets. It normalizes HTML snippets to be cross-compatible with legacy IE.
npm i --save-dev expect expect-html-equal
var expect = require('expect')
require('expect-html-equal')
it('works', function () {
var input = '<div class="name">Hello</div>'
expect(input).toHtmlEqual('<DIV CLASS=name>Hello</DIV>')
})
API:
expect(actual).toHtmlEqual(other)
expect(actual).toNotHtmlEqual(other)
expect(needle).toHtmlInclude(haystack)
expect(needle).toHtmlExclude(haystack)
expect.normalizeHtml
In node/iojs, it expects a global.document
to exist, so you might want to do
this in a jsdom environment. (eg, mocha-jsdom)
In the browser, you can use the rawgit CDN (change {VERSION}
):
<script src='https://cdn.rawgit.com/mjackson/expect/{VERSION}/dist/expect.min.js'></script>
<script src='https://cdn.rawgit.com/rstacruz/expect-html-equal/{VERSION}/index.js'></script>
expect-html-equal © 2015+, Rico Sta. Cruz. Released under the MIT License.
Authored and maintained by Rico Sta. Cruz with help from contributors (list).
ricostacruz.com · GitHub @rstacruz · Twitter @rstacruz
FAQs
Extension to expect to compares two HTML snippets
We found that expect-html-equal demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer 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
An opt-in lazy import keyword aims to speed up Python startups, especially CLIs, without the ecosystem-wide risks that sank PEP 690.
Security News
Socket CEO Feross Aboukhadijeh discusses the recent npm supply chain attacks on PodRocket, covering novel attack vectors and how developers can protect themselves.
Security News
Maintainers back GitHub’s npm security overhaul but raise concerns about CI/CD workflows, enterprise support, and token management.