fix(FN-4218): resolve lint and schema-version expectation regressions
Fusion-Task-Id: FN-4218 Fusion-Task-Lineage: 0b50d7f4-5001-4eb6-9633-7b24b00097fd
This commit is contained in:
@@ -97,7 +97,7 @@ export class ExperimentSessionStore extends EventEmitter<ExperimentSessionStoreE
|
||||
}
|
||||
if (options.tag) {
|
||||
where.push("tags LIKE ?");
|
||||
params.push(`%\"${options.tag}\"%`);
|
||||
params.push(`%"${options.tag}"%`);
|
||||
}
|
||||
if (options.search) {
|
||||
where.push("(name LIKE ? OR COALESCE(workingDir, '') LIKE ?)");
|
||||
|
||||
@@ -743,8 +743,8 @@ describe("RoadmapStore", () => {
|
||||
});
|
||||
|
||||
describe("schema version", () => {
|
||||
it("schema version is 74 after init", () => {
|
||||
expect(db.getSchemaVersion()).toBe(74);
|
||||
it("schema version is 75 after init", () => {
|
||||
expect(db.getSchemaVersion()).toBe(75);
|
||||
});
|
||||
});
|
||||
|
||||
|
||||
Reference in New Issue
Block a user