Commit c7dbba8b authored by Filipa Lacerda's avatar Filipa Lacerda

Adds tests for sync actions

parent 8b01ef82
import * as actions from '~/notes/stores/actions';
import testAction from './helpers';
import { note, discussionMock, notesDataMock, userDataMock, issueDataMock, individualNote } from '../mock_data';
import service from '~/notes/services/issue_notes_service';
import { discussionMock, notesDataMock, userDataMock, issueDataMock, individualNote } from '../mock_data';
// use require syntax for inline loaders.
// with inject-loader, this returns a module factory
// that allows us to inject mocked dependencies.
// const actionsInjector = require('inject-loader!./actions');
// const actions = actionsInjector({
// '../api/shop': {
// getProducts (cb) {
// setTimeout(() => {
// cb([ /* mocked response */ ])
// }, 100)
// }
// }
// });
fdescribe('Actions Notes Store', () => {
describe('Actions Notes Store', () => {
describe('setNotesData', () => {
it('should set received notes data', (done) => {
testAction(actions.setNotesData, null, { notesData: {} }, [
......@@ -75,69 +59,4 @@ fdescribe('Actions Notes Store', () => {
], done);
});
});
describe('fetchNotes', () => {
it('should request notes', (done) => {
spyOn(service, 'fetchNotes').and.returnValue(Promise.resolve({
json() {
return [individualNote];
},
}));
testAction(actions.fetchNotes, null, { notes: [] }, [
{ type: 'TOGGLE_DISCUSSION', payload: [individualNote] },
], done);
});
});
describe('deleteNote', () => {
it('should delete note', () => {});
});
describe('updateNote', () => {
it('should update note', () => {
});
});
describe('replyToDiscussion', () => {
it('should add a reply to a discussion', () => {
});
});
describe('createNewNote', () => {
it('should create a new note', () => {});
});
describe('saveNote', () => {
it('should save the received note', () => {
});
});
describe('poll', () => {
it('should start polling the received endoint', () => {
});
});
describe('toggleAward', () => {
it('should toggle received award', () => {
});
});
describe('toggleAwardRequest', () => {
it('should make a request to toggle the award', () => {
});
});
describe('scrollToNoteIfNeeded', () => {
it('should call `scrollToElement` if note is not in viewport', () => {
});
it('should note call `scrollToElement` if note is in viewport', () => {
});
});
});
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