Commit e1f1496a authored by Winnie Hellmann's avatar Winnie Hellmann

Hard code test name in timeline_entry_item_spec.js

(cherry picked from commit 2704c4a5)
parent 898a0b8e
<script>
export default {
name: 'TimelineEntryItem',
};
</script>
<template>
<li class="timeline-entry">
<div class="timeline-entry-inner"><slot></slot></div>
......
import { shallowMount, createLocalVue } from '@vue/test-utils';
import TimelineEntryItem from '~/vue_shared/components/notes/timeline_entry_item.vue';
describe(TimelineEntryItem.name, () => {
describe(`TimelineEntryItem`, () => {
let wrapper;
const factory = (options = {}) => {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment