mirror of
https://github.com/bitburner-official/bitburner-src.git
synced 2024-11-10 09:43:54 +01:00
11 lines
188 B
TypeScript
11 lines
188 B
TypeScript
export {};
|
|
|
|
beforeEach(() => {
|
|
cy.visit("/", {
|
|
onBeforeLoad(win: Cypress.AUTWindow) {
|
|
win.indexedDB.deleteDatabase("bitburnerSave");
|
|
},
|
|
});
|
|
cy.clearLocalStorage();
|
|
});
|