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.
26 lines
534 B
26 lines
534 B
4 years ago
|
const assert = require('assert')
|
||
|
const axios = require('axios')
|
||
|
const host = global.host || 'http://localhost:3000'
|
||
|
|
||
|
describe('测试获取歌词是否正常', () => {
|
||
|
it('数据应该有 lrc 字段', (done) => {
|
||
|
const qs = {
|
||
|
id: 347230,
|
||
|
}
|
||
|
|
||
|
axios
|
||
|
.get(`${host}/lyric`, {
|
||
|
params: qs,
|
||
|
})
|
||
|
.then(({ status, data }) => {
|
||
|
if (status == 200) {
|
||
|
assert(typeof data.lrc !== 'undefined')
|
||
|
}
|
||
|
done()
|
||
|
})
|
||
|
.catch((err) => {
|
||
|
done(err)
|
||
|
})
|
||
|
})
|
||
|
})
|