[ci skip] Adds tests cases for system note

This commit is contained in:
Filipa Lacerda 2017-07-28 10:55:41 +01:00
parent ed05a62c4a
commit 6530035fb0
3 changed files with 19 additions and 0 deletions

View file

@ -1,5 +1,6 @@
<script>
export default {
name: 'singInLinksNotes',
data() {
const { newSessionPath, registerPath } = this.$store.getters.notesData;

View file

@ -4,6 +4,7 @@
import issueNoteHeader from './issue_note_header.vue';
export default {
name: 'systemNote',
props: {
note: {
type: Object,

View file

@ -0,0 +1,17 @@
describe('issue system note', () => {
it('should render a list item with correct id', () => {
});
it('should render target class is note is target note', () => {
});
it('should render svg icon', () => {
});
it('should render note header component', () => {
});
});