UNPKG

@this-dot/cypress-indexeddb

Version:

A Cypress.io helper library for reading and manipulating data inside IndexedDB

6 lines (5 loc) 451 B
/// <reference types="cypress" /> export declare function setDatabaseInternal(databaseName: string, database: IDBDatabase): void; export declare function overrideAs(originalAs: Cypress.QueryFn<'as'>, alias: string, options?: Partial<Cypress.AsOptions>): (subject: unknown) => any; export declare const getDatabase: (alias: string) => Cypress.Chainable<IDBDatabase>; export declare const getStore: (alias: string) => Cypress.Chainable<IDBObjectStore>;