parent
307e71408b
commit
a1a09a59ab
2 changed files with 10 additions and 30 deletions
@ -1,7 +1,12 @@ |
|||||||
module.exports = { |
module.exports = { |
||||||
postData: [ |
getPosts: function() { |
||||||
{ title: 'A walk in the park' }, |
this.$http |
||||||
{ title: 'Down the road', author: 'Alice' }, |
.get('http://localhost:5000/api/posts') |
||||||
{ title: 'On a summer day', author: 'Bob' }, |
.then(res => { |
||||||
], |
this.posts = res.body |
||||||
|
}) |
||||||
|
.catch(err => { |
||||||
|
console.log(`Error: ${err}`) |
||||||
|
}) |
||||||
|
}, |
||||||
} |
} |
||||||
|
@ -1,25 +0,0 @@ |
|||||||
const assert = require('chai').assert |
|
||||||
const remote = require('../src/remote') |
|
||||||
|
|
||||||
describe('remote', () => { |
|
||||||
const data = remote.postData |
|
||||||
|
|
||||||
describe('postData', () => { |
|
||||||
it('should return an array', () => { |
|
||||||
assert.typeOf(data, 'array') |
|
||||||
}) |
|
||||||
it('should not be empty', () => { |
|
||||||
assert.isAtLeast(data.length, 1) |
|
||||||
}) |
|
||||||
it('should contain objects', () => { |
|
||||||
for (obj of data) { |
|
||||||
assert.typeOf(obj, 'object') |
|
||||||
} |
|
||||||
}) |
|
||||||
it('should have objects with properties', () => { |
|
||||||
for (obj of data) { |
|
||||||
assert.isAtLeast(Object.keys(obj).length, 1) |
|
||||||
} |
|
||||||
}) |
|
||||||
}) |
|
||||||
}) |
|
Loading…
Reference in new issue