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


TypeScript ava.failing函數代碼示例

本文整理匯總了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")
開發者ID:coast-team,項目名稱:mute-structs,代碼行數:31,代碼來源:logootsropes.test.ts

示例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);
});
開發者ID:davewasmer,項目名稱:denali-auth,代碼行數:30,代碼來源:trackable-test.ts

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

示例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)
})
開發者ID:coast-team,項目名稱:mute-structs,代碼行數:30,代碼來源:tree.test.ts


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