All files / Rindu/utils/configuration migrations.ts

85.71% Statements 6/7
100% Branches 0/0
50% Functions 1/2
80% Lines 4/5

Press n or j to go to the next uncovered block, b, p or k for the previous block.

1 2 3 4 5 6 7 8 9 1045x     45x   45x 5x      
import { validateConfig } from "./schema";
import type { Migrations } from "types/configuration";
 
export const CURRENT_VERSION = 1;
 
export const migrations: Migrations = {
  0: (oldConfig) => validateConfig(oldConfig),
  default: (oldConfig) => validateConfig(oldConfig),
};