fix import
This commit is contained in:
parent
f22a563a7b
commit
9ab924116b
|
@ -4,9 +4,11 @@
|
||||||
*/
|
*/
|
||||||
|
|
||||||
import { describe, expect, it } from 'vitest';
|
import { describe, expect, it } from 'vitest';
|
||||||
import { I18n } from '@/scripts/i18n.js';
|
import { I18n } from '../../frontend-shared/js/i18n.js'; // @@で参照できなかったので
|
||||||
import { ParameterizedString } from '../../../locales/index.js';
|
import { ParameterizedString } from '../../../locales/index.js';
|
||||||
|
|
||||||
|
// TODO: このテストはfrontend-sharedに移動する
|
||||||
|
|
||||||
describe('i18n', () => {
|
describe('i18n', () => {
|
||||||
it('t', () => {
|
it('t', () => {
|
||||||
const i18n = new I18n({
|
const i18n = new I18n({
|
||||||
|
|
Loading…
Reference in New Issue