mirror of
https://github.com/bitwarden/browser
synced 2025-12-17 16:53:34 +00:00
[deps] Autofill: Update prettier to v3 (#7014)
* [deps] Autofill: Update prettier to v3 * prettier formatting updates --------- Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: Jonathan Prusik <jprusik@classynemesis.com>
This commit is contained in:
@@ -37,7 +37,7 @@ describe("FormSelectionList", () => {
|
||||
beforeEach(() => {
|
||||
formSelectionList = new FormSelectionList<TestItemView, TestItemValue>(
|
||||
testControlFactory,
|
||||
testCompareFn
|
||||
testCompareFn,
|
||||
);
|
||||
testItems = [...initialTestItems];
|
||||
});
|
||||
@@ -148,15 +148,15 @@ describe("FormSelectionList", () => {
|
||||
|
||||
// Form array values should be in the same order
|
||||
expect(formSelectionList.formArray.value[0].id).toEqual(
|
||||
formSelectionList.selectedItems[0].id
|
||||
formSelectionList.selectedItems[0].id,
|
||||
);
|
||||
|
||||
expect(formSelectionList.formArray.value[1].id).toEqual(
|
||||
formSelectionList.selectedItems[1].id
|
||||
formSelectionList.selectedItems[1].id,
|
||||
);
|
||||
|
||||
expect(formSelectionList.formArray.value[2].id).toEqual(
|
||||
formSelectionList.selectedItems[2].id
|
||||
formSelectionList.selectedItems[2].id,
|
||||
);
|
||||
});
|
||||
});
|
||||
@@ -180,7 +180,7 @@ describe("FormSelectionList", () => {
|
||||
|
||||
// Value and View should still be in sync
|
||||
expect(formSelectionList.formArray.value[0].id).toEqual(
|
||||
formSelectionList.selectedItems[0].id
|
||||
formSelectionList.selectedItems[0].id,
|
||||
);
|
||||
});
|
||||
|
||||
|
||||
Reference in New Issue
Block a user