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
601 B
26 lines
601 B
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)
|
|
})
|
|
})
|
|
})
|