1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-17 16:53:34 +00:00

pm-5273 Fix versions

This commit is contained in:
Carlos Gonçalves
2024-03-12 23:17:52 +00:00
parent a5e56d9d4c
commit 650a8c7a4f

View File

@@ -80,8 +80,8 @@ describe("LocalDataMigrator", () => {
describe("migrate", () => {
beforeEach(() => {
helper = mockMigrationHelper(exampleJSON(), 23);
sut = new LocalDataMigrator(22, 23);
helper = mockMigrationHelper(exampleJSON(), 35);
sut = new LocalDataMigrator(34, 35);
});
it("should remove local data from all accounts", async () => {
@@ -105,8 +105,8 @@ describe("LocalDataMigrator", () => {
describe("rollback", () => {
beforeEach(() => {
helper = mockMigrationHelper(rollbackJSON(), 23);
sut = new LocalDataMigrator(22, 23);
helper = mockMigrationHelper(rollbackJSON(), 35);
sut = new LocalDataMigrator(34, 35);
});
it.each(["user-1", "user-2"])("should null out new values", async (userId) => {