Skip to content
代码片段 群组 项目
提交 1e1bbabd 编辑于 作者: David Pisek's avatar David Pisek
浏览文件

Merge branch '355940-sec-training-url-loading' into 'master'

No related branches found
No related tags found
无相关合并请求
......@@ -25,6 +25,7 @@ export const TRAINING_URL_POLLING_INTERVAL = 5000;
export default {
i18n,
TEMP_PROVIDER_LOGOS,
SECURITY_TRAINING_URL_STATUS_COMPLETED,
components: {
GlLink,
GlIcon,
......@@ -172,12 +173,12 @@ export default {
<div v-else-if="isUrlsLoading">
<gl-skeleton-loader :width="200" :lines="3" />
</div>
<div v-else>
<div
v-for="({ name, url, identifier }, index) in securityTrainingUrls"
:key="index"
class="gl-mt-6"
>
<div
v-for="({ name, url, identifier, status }, index) in securityTrainingUrls"
:key="index"
class="gl-mt-6"
>
<div v-if="status === $options.SECURITY_TRAINING_URL_STATUS_COMPLETED">
<div>
<span v-if="$options.TEMP_PROVIDER_LOGOS[name]" class="gl-mr-1 gl-display-inline-flex">
<div
......
......@@ -277,6 +277,23 @@ describe('VulnerabilityTraining component', () => {
expect(findTrainingItemLinks().exists()).toBe(false);
expect(findTrainingItemLinkIcons().exists()).toBe(false);
});
it('does not display the training item if the status is not completed', async () => {
createApolloProvider({
projectQueryHandler: jest.fn().mockResolvedValue(
getSecurityTrainingProjectData({
urlOverrides: {
first: {
status: SECURITY_TRAINING_URL_STATUS_PENDING,
},
},
}).response,
),
});
createComponent();
await waitForQueryToBeLoaded();
expect(findTrainingItemLinks()).toHaveLength(testTrainingUrls.length - 1);
});
});
describe('security training query', () => {
......
0% 加载中 .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册