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,32 @@
const assert = require('assert')
const axios = require('axios')
const host = global.host || 'http://localhost:3000'
console.log('注意: 测试登录需在 test/login.test.js 中填写账号密码!!!')
const phone = ''
const password = ''
describe('测试登录是否正常', () => {
it('手机登录 code 应该等于200', (done) => {
const qs = {
phone: process.env.NCM_API_TEST_LOGIN_PHONE || phone || '',
password: process.env.NCM_API_TEST_LOGIN_PASSWORD || password || '',
}
axios
.get(`${host}/login/cellphone`, {
params: qs,
})
.then(({ status, data }) => {
if (status == 200) {
console.log('昵称:' + data.profile.nickname)
assert(data.code === 200)
done()
} else {
done('登录错误')
}
})
.catch((err) => {
done(err)
})
})
})