本文整理汇总了TypeScript中power-assert.equal函数的典型用法代码示例。如果您正苦于以下问题:TypeScript equal函数的具体用法?TypeScript equal怎么用?TypeScript equal使用的例子?那么恭喜您, 这里精选的函数代码示例或许可以为您提供帮助。
在下文中一共展示了equal函数的7个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的TypeScript代码示例。
示例1: it
it('download related schema', async () => {
const actual = await dtsgenerator([
fs.readFileSync('./schema/simple_example.json', { encoding: 'utf-8' })
]);
const expected = fs.readFileSync('./test/expected_file/simple_schema.d.ts', { encoding: 'utf-8' });
assert.equal(actual, expected, actual);
});
示例2: it
it("change cell 2 width", function() {
var item = ColumnHeaderItem.create().setWidth(200);
var columnHeader = ColumnHeader.create().setItem(2, item);
assert.equal(JSON.stringify(columnHeader.toMinJS()), JSON.stringify({
items: { 2: { width: 200 } }
}));
});
示例3: equal
moxios.wait(() => {
let response = onFulfilled.getCall(0).args[0];
equal(response.status, 204);
let request = moxios.requests.get('PUT', '/users/12345');
notEqual(request, undefined);
done();
});
示例4: it
it("columnNo=1 isRightBorder", function() {
var point = new Point(
viewModel.rowHeader.width + viewModel.columnHeader.items.get(1).width + 1,
viewModel.columnHeader.height + 1);
var columnInfo = clientPointToColumnInfo(viewModel, opeModel, point);
// 対象列番号
assert.equal(columnInfo.columnNo, 1);
// 左座標
assert.equal(columnInfo.left, viewModel.rowHeader.width);
// 幅
assert.equal(columnInfo.width, viewModel.columnHeader.items.get(1).width);
assert.equal(columnInfo.isRightBorder, true);
});
示例5: it
it('should parse arguments 2', () => {
initialize([
'node', 'script.js',
'--out', 'output.d.ts',
'--stdin',
'--url', 'http://example.com/hoge/fuga',
'--url', 'http://example.com/hoge/fuga2',
'./file1.json', '../file2.json', 'file3.json',
]);
assert.deepEqual(opts.files, ['./file1.json', '../file2.json', 'file3.json']);
assert.deepEqual(opts.urls, ['http://example.com/hoge/fuga', 'http://example.com/hoge/fuga2']);
assert.equal(opts.stdin, true);
assert.equal(opts.out, 'output.d.ts');
assert.equal(opts.isReadFromStdin(), true);
});
示例6: it
it("change cell 2 width", function() {
var item = RowHeaderItem.create().setHeight(200);
var rowHeader = RowHeader.create().setItem(2, item);
assert.equal(JSON.stringify(rowHeader.toMinJS()), JSON.stringify({
items: { 2: { height: 200 } }
}));
});
示例7:
() => {
var encodedValues = qs.stringify(
{ a: 'b', c: ['d', 'e=f'], f: [['g'], ['h']] },
{ encodeValuesOnly: true }
);
assert.equal(encodedValues,'a=b&c[0]=d&c[1]=e%3Df&f[0][0]=g&f[1][0]=h');
}