[ci skip] Adds test cases for sign in component

This commit is contained in:
Filipa Lacerda 2017-07-28 10:50:32 +01:00
parent 3343bf30f7
commit ed05a62c4a
2 changed files with 11 additions and 2 deletions

View File

@ -14,9 +14,9 @@
<template>
<div class="disabled-comment text-center">
Please
<a :href="signInLink">register</a>
<a :href="registerLink">register</a>
or
<a :href="registerLink">sign in</a>
<a :href="signInLink">sign in</a>
to reply
</div>
</template>

View File

@ -0,0 +1,9 @@
describe('issue note signed out widget component', () => {
it('should render sign in link provided in the store', () => {
});
it('should render register link provided in the store', () => {
});
});