Skip to content

Commit

Permalink
Update dathost.test.ts
Browse files Browse the repository at this point in the history
  • Loading branch information
WardPearce committed Jun 9, 2021
1 parent e90c9f6 commit 5dd6358
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion src/test/dathost.test.ts
Expand Up @@ -55,6 +55,7 @@ describe('Dathost Tests', () => {
tickrate: 128,
rconPassword: generatePassword()
}))
await server[1].start()
})

afterAll(async () => {
Expand Down Expand Up @@ -206,6 +207,7 @@ describe('Dathost Tests', () => {
slots: 5,
rconPassword: generatePassword()
}))
await server[1].start()
})

afterAll(async () => {
Expand Down Expand Up @@ -297,6 +299,7 @@ describe('Dathost Tests', () => {
admins: ['[U:1:116962485]', 'STEAM_0:1:186064092',
'76561198017567105', 76561198214871321]
}))
await server[1].start()
})

it('Get server details', async () => {
Expand Down Expand Up @@ -369,7 +372,8 @@ describe('Dathost Tests', () => {
server = await dathost.createServer(new ServerSettings({
name: 'TS Teamspeak server',
location: 'sydney'
}).teamspeak({slots: 5}))
}).teamspeak({ slots: 5 }))
await server[1].start()
})

afterAll(async () => {
Expand Down

0 comments on commit 5dd6358

Please sign in to comment.