mirror of
https://github.com/bitwarden/browser.git
synced 2024-11-06 09:20:43 +01:00
62ad39e697
* Create tracker that can await until expected observables are received. * Test dates are almost equal * Remove unused class method * Allow for updating active account in accout service fake * Correct observable tracker behavior Clarify documentation * Transition config service to state provider Updates the config fetching behavior to be lazy and ensure that any emitted value has been updated if older than a configurable value (statically compiled). If desired, config fetching can be ensured fresh through an async. * Update calls to config service in DI and bootstrapping * Migrate account server configs * Fix global config fetching * Test migration rollback * Adhere to implementation naming convention * Adhere to abstract class naming convention * Complete config abstraction rename * Remove unnecessary cli config service * Fix builds * Validate observable does not complete * Use token service to determine authed or unauthed config pull * Remove superfluous factory config * Name describe blocks after the thing they test * Remove implementation documentation Unfortunately the experience when linking to external documentation is quite poor. Instead of following the link and retrieving docs, you get a link that can be clicked to take you out of context to the docs. No link _does_ retrieve docs, but lacks indication in the implementation that documentation exists at all. On the balance, removing the link is the better experience. * Fix storybook
55 lines
1.7 KiB
TypeScript
55 lines
1.7 KiB
TypeScript
describe("toAlmostEqual custom matcher", () => {
|
|
it("matches identical Dates", () => {
|
|
const date = new Date();
|
|
expect(date).toAlmostEqual(date);
|
|
});
|
|
|
|
it("matches when older but within default ms", () => {
|
|
const date = new Date();
|
|
const olderDate = new Date(date.getTime() - 5);
|
|
expect(date).toAlmostEqual(olderDate);
|
|
});
|
|
|
|
it("matches when newer but within default ms", () => {
|
|
const date = new Date();
|
|
const olderDate = new Date(date.getTime() + 5);
|
|
expect(date).toAlmostEqual(olderDate);
|
|
});
|
|
|
|
it("doesn't match if older than default ms", () => {
|
|
const date = new Date();
|
|
const olderDate = new Date(date.getTime() - 11);
|
|
expect(date).not.toAlmostEqual(olderDate);
|
|
});
|
|
|
|
it("doesn't match if newer than default ms", () => {
|
|
const date = new Date();
|
|
const olderDate = new Date(date.getTime() + 11);
|
|
expect(date).not.toAlmostEqual(olderDate);
|
|
});
|
|
|
|
it("matches when older but within custom ms", () => {
|
|
const date = new Date();
|
|
const olderDate = new Date(date.getTime() - 15);
|
|
expect(date).toAlmostEqual(olderDate, 20);
|
|
});
|
|
|
|
it("matches when newer but within custom ms", () => {
|
|
const date = new Date();
|
|
const olderDate = new Date(date.getTime() + 15);
|
|
expect(date).toAlmostEqual(olderDate, 20);
|
|
});
|
|
|
|
it("doesn't match if older than custom ms", () => {
|
|
const date = new Date();
|
|
const olderDate = new Date(date.getTime() - 21);
|
|
expect(date).not.toAlmostEqual(olderDate, 20);
|
|
});
|
|
|
|
it("doesn't match if newer than custom ms", () => {
|
|
const date = new Date();
|
|
const olderDate = new Date(date.getTime() + 21);
|
|
expect(date).not.toAlmostEqual(olderDate, 20);
|
|
});
|
|
});
|