Hard code test name in timeline_entry_item_spec.js

This commit is contained in:
Winnie Hellmann 2019-04-08 20:16:46 +02:00
parent 41c5733f55
commit 2704c4a588
2 changed files with 1 additions and 7 deletions

View File

@ -1,9 +1,3 @@
<script>
export default {
name: 'TimelineEntryItem',
};
</script>
<template>
<li class="timeline-entry">
<div class="timeline-entry-inner"><slot></slot></div>

View File

@ -1,7 +1,7 @@
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 = {}) => {