debian-mirror-gitlab/spec/frontend/google_cloud/aiml/panel_spec.js
2023-07-09 08:55:56 +05:30

43 lines
1.5 KiB
JavaScript

import { shallowMountExtended } from 'helpers/vue_test_utils_helper';
import Panel from '~/google_cloud/aiml/panel.vue';
import IncubationBanner from '~/google_cloud/components/incubation_banner.vue';
import GoogleCloudMenu from '~/google_cloud/components/google_cloud_menu.vue';
import ServiceTable from '~/google_cloud/aiml/service_table.vue';
describe('google_cloud/databases/panel', () => {
let wrapper;
const props = {
configurationUrl: 'configuration-url',
deploymentsUrl: 'deployments-url',
databasesUrl: 'databases-url',
aimlUrl: 'aiml-url',
visionAiUrl: 'vision-ai-url',
translationAiUrl: 'translation-ai-url',
languageAiUrl: 'language-ai-url',
};
beforeEach(() => {
wrapper = shallowMountExtended(Panel, { propsData: props });
});
it('contains incubation banner', () => {
const target = wrapper.findComponent(IncubationBanner);
expect(target.exists()).toBe(true);
});
it('contains google cloud menu with `aiml` active', () => {
const target = wrapper.findComponent(GoogleCloudMenu);
expect(target.exists()).toBe(true);
expect(target.props('active')).toBe('aiml');
expect(target.props('configurationUrl')).toBe(props.configurationUrl);
expect(target.props('deploymentsUrl')).toBe(props.deploymentsUrl);
expect(target.props('databasesUrl')).toBe(props.databasesUrl);
expect(target.props('aimlUrl')).toBe(props.aimlUrl);
});
it('contains service table', () => {
const target = wrapper.findComponent(ServiceTable);
expect(target.exists()).toBe(true);
});
});