should-html

HTML testing assertions for Should.js

Apache-2.0 3 个版本
安装
npm install should-html
yarn add should-html
pnpm add should-html
bun add should-html
README

should-html

HTML testing assertion for should.js.

Installation

$ npm install should-html --save-dev

Example

var should = require('should');
require('should-html');

it('should return valid html', function() {
    '<div id="test" class="myDiv">Hello World</div>'.should.be.html('<div class="myDiv" id="test">Hello World</div>');
});
版本列表
1.0.2 2016-06-09
1.0.1 2016-06-08
1.0.0 2016-04-08