()
| 154 | |
| 155 | describe("onepassword store", () => { |
| 156 | const makeStore = () => { |
| 157 | const blobs = pluginBlobStore( |
| 158 | makeInMemoryBlobStore(), |
| 159 | { org: "org_test", user: null }, |
| 160 | "onepassword", |
| 161 | ); |
| 162 | return { blobs, store: makeOnePasswordStore(blobs) }; |
| 163 | }; |
| 164 | |
| 165 | it.effect("upgrades a legacy single-vault blob on read", () => |
| 166 | Effect.gen(function* () { |
no test coverage detected