當前位置: 首頁>>代碼示例>>TypeScript>>正文


TypeScript power-assert.equal函數代碼示例

本文整理匯總了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);
 });
開發者ID:tycho01,項目名稱:dtsgenerator,代碼行數:7,代碼來源:file_schema_test.ts

示例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 } }
     }));
 });
開發者ID:BloodyEnterprise,項目名稱:react-gridview,代碼行數:7,代碼來源:column-header.test.ts

示例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();
 });
開發者ID:DanCorder,項目名稱:DefinitelyTyped,代碼行數:7,代碼來源:moxios-tests.ts

示例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);
    });
開發者ID:BloodyEnterprise,項目名稱:react-gridview,代碼行數:16,代碼來源:select.test.ts

示例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);
    });
開發者ID:horiuchi,項目名稱:dtsgenerator,代碼行數:16,代碼來源:commandOptions_test.ts

示例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 } }
     }));
 });
開發者ID:BloodyEnterprise,項目名稱:react-gridview,代碼行數:7,代碼來源:row-header.test.ts

示例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');
}
開發者ID:DanielRosenwasser,項目名稱:DefinitelyTyped,代碼行數:7,代碼來源:qs-tests.ts


注:本文中的power-assert.equal函數示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。