本文整理汇总了TypeScript中ava.failing函数的典型用法代码示例。如果您正苦于以下问题:TypeScript failing函数的具体用法?TypeScript failing怎么用?TypeScript failing使用的例子?那么恭喜您, 这里精选的函数代码示例或许可以为您提供帮助。
在下文中一共展示了failing函数的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的TypeScript代码示例。
示例1: LogootSRopes
insertOp2.execute(docA)
insertOp1.execute(docB)
t.is(docA.str, docB.str, "docA.str = docB.str")
t.is(docA.digest(), docB.digest(), "docA.digest() = docB.digest()")
})
test.failing("commutative-insert-deletion", (t) => {
const replicaNumberA = 1
const docA = new LogootSRopes(replicaNumberA)
const replicaNumberB = 2
const docB = new LogootSRopes(replicaNumberB)
const insertOp = docA.insertLocal(0, "hello world")
const deleteOp = docA.delLocal(5, 5 + " world".length)
deleteOp.execute(docB)
insertOp.execute(docB)
t.is(docA.str, docB.str, "docA.str = docB.str")
t.is(docA.digest(), docB.digest(), "docA.digest() = docB.digest()")
})
test("commutative-insert-split", (t) => {
const replicaNumberA = 1
const docA = new LogootSRopes(replicaNumberA)
const replicaNumberB = 2
const docB = new LogootSRopes(replicaNumberB)
const insertOp = docA.insertLocal(0, "hello world")
示例2: async
attributes: loginCredentials
}
});
await app.post('/users/auth/login', loginCredentials);
let db = app.lookup('orm-adapter:memory')._cache;
t.truthy(db.user[1].lastLoginAt);
t.truthy(db.user[1].lastIp);
t.is(db.user[1].loginCount, 1);
});
test.failing('tracks last seen time', async (t) => {
let app = new AppAcceptanceTest();
let loginCredentials = {
email: 'dave@example.com',
password: '123'
};
await app.post('/users/auth/register', {
data: {
type: 'user',
attributes: loginCredentials
}
});
let { body } = await app.post('/users/auth/login', loginCredentials);
app.setHeader('Authorization', `TOKEN ${ body.token }`);
await app.get('/');
let db = app.lookup('orm-adapter:memory')._cache;
t.truthy(db.user[1].lastSeen);
});
示例3:
options: {baseUrl: 'https://example.com'},
handler: options => {
options.baseUrl = 'https://google.com';
}
});
await t.throwsAsync(instanceA('/'), 'Failed to set baseUrl. Options are normalized already.');
});
// TODO: fix this
test.failing('throws if the `searchParams` key is invalid', async t => {
await t.throwsAsync(got('https://example.com', {
searchParams: {
// @ts-ignore
[undefined]: 'valid'
}
}), {
instanceOf: TypeError,
message: 'The `searchParams` key \'\' must be a string, number, boolean or null'
});
});
test('throws if the `searchParams` value is invalid', async t => {
await t.throwsAsync(got('https://example.com', {
searchParams: {
foo: []
}
}), {
instanceOf: TypeError,
message: 'The `searchParams` value \'\' must be a string, number, boolean or null'
});
示例4: getLogootSRopesFromTree
test.failing("non-convergent-balanced-trees-different-digests", (t) => {
const docs: LogootSRopes[] = []
const files = [
"trees/trees-nct/tree-nct-nikita-button-shirt-1.json",
"trees/trees-nct/tree-nct-nikita-button-shirt-2.json",
]
files.forEach((file) => {
const data = fs.readFileSync(file, "utf8")
const tree = JSON.parse(data)
const doc: LogootSRopes | null = getLogootSRopesFromTree(file)
if (doc !== null) {
docs.push(doc)
} else {
t.fail("the file must contains a valid serialization of a LogootSRopes")
}
})
const digests: number [] = docs.map((doc: LogootSRopes) => doc.digest())
const allDifferents: boolean = digests.every((digest, index) => {
return digests.every((otherDigest, otherIndex) => {
return index === otherIndex || digest !== otherDigest
})
})
t.true(allDifferents)
})