()
| 244 | |
| 245 | describe("onepassword store", () => { |
| 246 | const makeStore = () => { |
| 247 | const blobs = pluginBlobStore( |
| 248 | makeInMemoryBlobStore(), |
| 249 | { org: "org_test", user: null }, |
| 250 | "onepassword", |
| 251 | ); |
| 252 | return { blobs, store: makeOnePasswordStore(blobs) }; |
| 253 | }; |
| 254 | |
| 255 | it.effect("upgrades a legacy single-vault blob on read", () => |
| 256 | Effect.gen(function* () { |
no test coverage detected