fix: add netease_api

This commit is contained in:
qier222 2021-03-06 22:04:18 +08:00
parent fc0367c9b4
commit 0b701d23da
No known key found for this signature in database
GPG key ID: 9C85007ED905F14D
304 changed files with 27205 additions and 1 deletions

View file

@ -0,0 +1,25 @@
const assert = require('assert')
const axios = require('axios')
const host = global.host || 'http://localhost:3000'
describe('测试搜索是否正常', () => {
it('获取到的数据的 name 应该和搜索关键词一致', (done) => {
const qs = {
keywords: '海阔天空',
type: 1,
}
axios
.get(`${host}/search`, {
params: qs,
})
.then(({ status, data }) => {
if (status == 200) {
assert(data.result.songs[0].name === '海阔天空')
}
done()
})
.catch((err) => {
done(err)
})
})
})