- TBD
+
+
+
+
+ {{ $t('title.section.toDo') }}
+
+ TBD
+
+
+
+ {{ $t('title.section.filingHistory') }}
+
+ TBD
+
+
+
+
+
+ {{ $t('title.section.officeAddresses') }}
+
+ TBD
+
+
+
+ {{ $t('title.section.currentDirectors') }}
+
+ TBD
+
+
diff --git a/tests/pages/dashboard.spec.ts b/tests/pages/dashboard.spec.ts
index 9864c33..6346c59 100644
--- a/tests/pages/dashboard.spec.ts
+++ b/tests/pages/dashboard.spec.ts
@@ -1,5 +1,6 @@
import { beforeEach, describe, expect, it } from 'vitest'
import { flushPromises, mount, VueWrapper } from '@vue/test-utils'
+import { mockedI18n } from '../test-utils/mockedi18n'
import Dashboard from '../../src/pages/dashboard.vue'
@@ -7,7 +8,7 @@ describe('dashboard page tests', () => {
let wrapper: VueWrapper
beforeEach(async () => {
- wrapper = mount(Dashboard)
+ wrapper = mount(Dashboard, { global: { plugins: [mockedI18n] } })
// await api calls to resolve
await flushPromises()
})
diff --git a/tests/test-utils/mockedi18n.ts b/tests/test-utils/mockedi18n.ts
new file mode 100644
index 0000000..1d109e4
--- /dev/null
+++ b/tests/test-utils/mockedi18n.ts
@@ -0,0 +1,7 @@
+import { createI18n } from 'vue-i18n'
+import en from '~/lang/en.json'
+
+export const mockedI18n = createI18n({
+ locale: 'en',
+ messages: en
+})