How to use the proclaim.deepEqual function in proclaim

To help you get started, we’ve selected a few proclaim examples, based on popular ways it is used in public projects.

Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.

github OmgImAlexis / upcast / test / unit / upcast.js View on Github external
it(desc, function () {
                    var i, len = pairs.length, pair;
                    for (i = 0; i < len; i ++) {
                        pair = pairs[i];
                        if (isNaN(pair)) {
                            assert.isTrue(isNaN(upcast.to(pair, 'function')));
                        } else {
                            assert.deepEqual(upcast.to(pair, 'function')(), pair);
                        }
                    }
                });
            }
github springernature / truffler / test / unit / lib / truffler.js View on Github external
it('should call the `_run` method with `options.url`, the options (minus URL), and the callback', function () {
				assert.calledOnce(instance._run);
				assert.strictEqual(instance._run.firstCall.args[0], options.url);
				assert.deepEqual(instance._run.firstCall.args[1], options);
				assert.strictEqual(instance._run.firstCall.args[2], done);
			});
		});
github pa11y / pa11y / test / unit / lib / pa11y.js View on Github external
it('defaults the options object with `pa11y.defaults`', () => {
			assert.calledOnce(extend);
			assert.isObject(extend.firstCall.args[0]);
			assert.strictEqual(extend.firstCall.args[1], pa11y.defaults);
			assert.deepEqual(extend.firstCall.args[2], options);
		});
github pa11y / pa11y / test / unit / sniff / run-html-codesniffer.js View on Github external
runHtmlCodeSniffer(page, opts, function (err, results) {
			assert.deepEqual(results, messages);
			done();
		});
	});
github pa11y / pa11y / test / unit / sniff / load-config.js View on Github external
loadConfig('./config/pa11y.json', function (err, config) {
			assert.isTrue(fs.readFile.withArgs(path.resolve(process.cwd(), './config/pa11y.json'), 'utf8').calledOnce);
			assert.isTrue(JSON.parse.withArgs(exampleConfig).calledOnce);
			assert.deepEqual(config, exampleConfigObject);
			done();
		});
	});

proclaim

A simple assertion library for server and client side JavaScript

MIT
Latest version published 5 years ago

Package Health Score

48 / 100
Full package analysis