All Downloads are FREE. Search and download functionalities are using the official Maven repository.

generator.client.vue.i18n.src.test.HomePageVue.spec.ts Maven / Gradle / Ivy

There is a newer version: 1.23.0
Show newest version
import HomepageVue from '@/home/infrastructure/primary/HomepageVue.vue';
import { shallowMount, type VueWrapper } from '@vue/test-utils';
import { describe, expect, it } from 'vitest';

let wrapper: VueWrapper;

const wrap = () => {
  wrapper = shallowMount(HomepageVue);
};

describe('App I18next', () => {
  it('should renders with translation', () => {
    wrap();

    expect(wrapper.text()).toContain('translationEnabled');
  });
});




© 2015 - 2025 Weber Informatics LLC | Privacy Policy