Migrate test/index.ts to use dynamic database imports

Replace static databaseUtil import with dynamic import pattern for test context.
Add comprehensive JSDoc documentation and improve code formatting.
Maintains functionality while removing static dependency.
This commit is contained in:
Matthew Raymer
2025-07-09 10:07:49 +00:00
parent 1fc6f065bf
commit c70c5c6bda
8 changed files with 491 additions and 18 deletions

View File

@@ -1423,7 +1423,7 @@ export default class AccountViewView extends Vue {
} catch (error) {
this.limitsMessage =
ACCOUNT_VIEW_CONSTANTS.LIMITS.ERROR_RETRIEVING_LIMITS;
this.notify.error(ACCOUNT_VIEW_CONSTANTS.LIMITS.ERROR_RETRIEVING_LIMITS);
this.notify.error(this.limitsMessage, TIMEOUTS.STANDARD);
} finally {
this.loadingLimits = false;
}