mirror of
https://github.com/qier222/YesPlayMusic.git
synced 2024-11-23 03:11:16 +08:00
26 lines
532 B
JavaScript
26 lines
532 B
JavaScript
const assert = require('assert')
|
|
const axios = require('axios')
|
|
const host = global.host || 'http://localhost:3000'
|
|
|
|
describe('测试获取歌手专辑列表是否正常', () => {
|
|
it('数据的 code 应该为200', (done) => {
|
|
const qs = {
|
|
id: 32311,
|
|
}
|
|
|
|
axios
|
|
.get(`${host}/album`, {
|
|
params: qs,
|
|
})
|
|
.then(({ status, data }) => {
|
|
if (status == 200) {
|
|
assert(data.code === 200)
|
|
}
|
|
done()
|
|
})
|
|
.catch((err) => {
|
|
done(err)
|
|
})
|
|
})
|
|
})
|