本文整理汇总了TypeScript中vs/base/node/id.getMachineId函数的典型用法代码示例。如果您正苦于以下问题:TypeScript getMachineId函数的具体用法?TypeScript getMachineId怎么用?TypeScript getMachineId使用的例子?那么恭喜您, 这里精选的函数代码示例或许可以为您提供帮助。
在下文中一共展示了getMachineId函数的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的TypeScript代码示例。
示例1: getCommonHTTPHeaders
export function getCommonHTTPHeaders(): TPromise<{ [key: string]: string; }> {
return getMachineId().then(machineId => ({
'X-Market-Client-Id': `VSCode ${pkg.version}`,
'User-Agent': `VSCode ${pkg.version}`,
'X-Market-User-Id': machineId
}));
}
示例2: test
test('getMachineId', function () {
return getMachineId().then(id => {
assert.ok(id);
});
});
示例3: test
test('getMachineId', () => {
return getMachineId().then(id => {
assert.ok(id);
});
});
示例4: test
test('getMachineId', function () {
this.timeout(20000);
return getMachineId().then(id => {
assert.ok(id);
});
});