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