You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

27 lines
611 B

const assert = require('assert')
const axios = require('axios')
const host = global.host || 'http://localhost:3000'
const config = require('../util/config.json')
describe('测试获取评论是否正常', () => {
it('数据的 code 应该为200', (done) => {
const qs = {
id: 32311,
cookie: config.anonymous_token,
}
axios
.get(`${host}/comment/album`, {
params: qs,
})
.then(({ status, data }) => {
if (status == 200) {
assert(data.code === 200)
}
done()
})
.catch((err) => {
done(err)
})
})
})