Merge remote-tracking branch 'upstream/develop' into yesterdailies-3

This commit is contained in:
Keith Holliday 2017-06-28 15:25:59 -06:00
commit f2d81a8d9c
2 changed files with 3 additions and 3 deletions

View file

@ -9,7 +9,7 @@ describe('tasks actions', () => {
});
describe('fetchUserTasks', () => {
it('fetches user tasks', async () => {
xit('fetches user tasks', async () => {
expect(store.state.tasks.loadingStatus).to.equal('NOT_LOADED');
const tasks = [{_id: 1}];
sandbox.stub(axios, 'get').withArgs('/api/v3/tasks/user').returns(Promise.resolve({data: {data: tasks}}));
@ -36,7 +36,7 @@ describe('tasks actions', () => {
expect(store.state.tasks.loadingStatus).to.equal('LOADED');
});
it('can reload tasks if forceLoad is true', async () => {
xit('can reload tasks if forceLoad is true', async () => {
store.state.tasks = {
loadingStatus: 'LOADED',
data: [{_id: 1}],

View file

@ -39,7 +39,7 @@
bottom: 0px;
left: -0px;
height: 42px;
background-image: linear-gradient(to bottom, rgba(52, 49, 58, 0), #34313a);
background-image: linear-gradient(to bottom, rgba($gray-10, 0), rgba($gray-10, 0.24));
width: 100%;
}