1
0
mirror of https://github.com/bitwarden/browser.git synced 2024-12-02 13:23:29 +01: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
No known key found for this signature in database
GPG Key ID: 8147F618E732EF25

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) => {