本文整理汇总了TypeScript中chai.assert.deepStrictEqual方法的典型用法代码示例。如果您正苦于以下问题:TypeScript assert.deepStrictEqual方法的具体用法?TypeScript assert.deepStrictEqual怎么用?TypeScript assert.deepStrictEqual使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类chai.assert
的用法示例。
在下文中一共展示了assert.deepStrictEqual方法的5个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的TypeScript代码示例。
示例1: it
it('should get components', () => {
assert.deepStrictEqual(c.getComponents(), [
expected.r,
expected.g,
expected.b,
]);
});
示例2: it
it('should get sub constraints', () => {
const sc1 = new DoubleConstraint();
const sc2 = new DecrementConstraint();
const c = new CompositeConstraint({
constraints: [sc1, sc2],
});
assert.deepStrictEqual(c.constraints, [sc1, sc2]);
});
示例3: it
it('should get list options', () => {
const options = [
{text: 'foo', value: 1.41},
{text: 'bar', value: 2.72},
{text: 'baz', value: 3.14},
];
const c = new ListConstraint({
options: options,
});
assert.deepStrictEqual(options, c.options);
});
示例4: it
it('should export JSON', () => {
const PARAMS = {
bar: 'hello',
foo: 1,
};
const preset = Preset.exportJson([
new Target(PARAMS, 'foo'),
new Target(PARAMS, 'bar'),
]);
assert.deepStrictEqual(preset, {
bar: 'hello',
foo: 1,
});
});
示例5: it
it('should export inputs as preset', () => {
const PARAMS = {
bar: 'hello',
baz: 2,
foo: 1,
};
const api = createApi();
api.addInput(PARAMS, 'foo');
api.addInput(PARAMS, 'bar');
api.addMonitor(PARAMS, 'baz', {
interval: 0,
});
const preset = api.exportPreset();
assert.deepStrictEqual(preset, {
bar: 'hello',
foo: 1,
});
});