aozhiwei fe3591928b 1
2022-04-28 14:26:40 +08:00

21 lines
638 B
JavaScript

const TestCase = require('./testcase');
const urls = {
'login': 'https://login-z2-test.cebg.games',
'cloud': 'https://cloud-z2-test.cebg.games',
'service': 'https://service-z2-test.cebg.games',
'gamelog': 'https://gamelog-z2-test.cebg.games',
'mail': 'https://gamemail-z2-test.cebg.games',
'game2006api': 'https://game2006api-z2-test.cebg.games',
'relation': 'ws://relation-z2-test.cebg.games/friend/websocket',
'game2006': 'ws://game2006-z2-test.cebg.games',
'game2006-n1': 'ws://game2006-n1-z2-test.cebg.games',
};
async function start() {
const testCase = new TestCase(urls);
await testCase.init();
}
start();