mirror of
https://github.com/bitburner-official/bitburner-src.git
synced 2024-11-11 02:03:58 +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");
|
||
|
});
|
||
|
});
|