本文整理汇总了TypeScript中ava.TestContext.is方法的典型用法代码示例。如果您正苦于以下问题:TypeScript TestContext.is方法的具体用法?TypeScript TestContext.is怎么用?TypeScript TestContext.is使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类ava.TestContext
的用法示例。
在下文中一共展示了TestContext.is方法的7个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的TypeScript代码示例。
示例1: inspectPushRecordCreationRequest
async function inspectPushRecordCreationRequest(t: TestContext, requestStub: SinonStub) {
// For player#create device record is already serialized. Checking serialized structure.
const anyValues = [
"device_type",
"language",
"timezone",
"device_os",
"sdk",
"delivery_platform",
"browser_name",
"browser_version",
"operating_system",
"operating_system_version",
"device_platform",
"device_model",
"identifier",
"notification_types"
];
t.is(requestStub.callCount, 1);
t.not(requestStub.getCall(0), null);
const data: any = requestStub.getCall(0).args[1];
anyValues.forEach((valueKey) => {
t.not(data[valueKey], undefined, `player create: ${valueKey} is undefined! => data: ${JSON.stringify(data)}`);
});
}
示例2: inspectOnSessionRequest
async function inspectOnSessionRequest(t: TestContext, requestStub: SinonStub) {
// Device record is serialized inside of `updateUserSession`. Checking original DeviceRecord properties.
const anyValues = [
"deliveryPlatform",
"language",
"timezone",
"browserVersion",
"sdkVersion",
"browserName",
"subscriptionState",
"operatingSystem",
"operatingSystemVersion",
"devicePlatform",
"deviceModel",
];
t.is(requestStub.callCount, 1);
t.not(requestStub.getCall(0), null);
const data: any = requestStub.getCall(0).args[1];
anyValues.forEach((valueKey) => {
t.not(data[valueKey], undefined, `on_session: ${valueKey} is undefined! => data: ${JSON.stringify(data)}`);
});
}
示例3: testAllJoynTypeRoundTrip
// Test that an AllJoyn schema type code can be converted to a JSON schema and back.
function testAllJoynTypeRoundTrip(t: TestContext, allJoynType: string, expectedSchema: JsonSchema) {
let schema: JsonSchema = AllJoynSchemaReader.allJoynTypeToJsonSchema(allJoynType);
t.deepEqual(schema, expectedSchema);
let convertedType: string = AllJoynSchemaWriter.jsonSchemaToAllJoynType(schema);
t.is(convertedType, allJoynType);
}
示例4: testPktLine
function testPktLine(t : TestContext, input : string, expected : string) {
t.is(decode(pktLine(encode(input))), expected);
}
示例5: testToHexChar
function testToHexChar(t : TestContext, input : number, expected : string) {
t.is(String.fromCharCode(toHexChar(input)), expected);
}
示例6: testUnpktLine
function testUnpktLine(t : TestContext, input : string, expected : [string, string]) {
const [line, tail] = unpktLine(input);
t.is(line, expected[0]);
t.is(tail, expected[1]);
}
示例7: testFromHex
function testFromHex(t : TestContext, input : string, expected : number) {
t.is(fromHex(input), expected);
}