gitlab-org--gitlab-foss/spec/javascripts/notes/components/issue_discussion_spec.js

44 lines
720 B
JavaScript
Raw Normal View History

2017-08-10 17:36:39 +00:00
2017-08-04 15:51:35 +00:00
describe('issue_discussion component', () => {
it('should render user avatar', () => {
});
it('should render discussion header', () => {
});
describe('updated note', () => {
it('should show information about update', () => {
});
});
describe('with open discussion', () => {
it('should render system note', () => {
});
it('should render placeholder note', () => {
});
it('should render regular note', () => {
});
describe('actions', () => {
it('should render reply button', () => {
});
it('should toggle reply form', () => {
});
it('should render signout widget when user is logged out', () => {
});
});
});
});