aozhiwei 996de7f2f1 1
2022-04-30 11:46:02 +08:00

22 lines
683 B
JavaScript

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