22 lines
683 B
JavaScript
22 lines
683 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',
|
|
'stat': 'https://stat-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-z2-test-n1.cebg.games',
|
|
};
|
|
|
|
async function start() {
|
|
const testCase = new TestCase(urls);
|
|
await testCase.init();
|
|
}
|
|
|
|
start();
|