Skip to content

Latest commit

 

History

History
38 lines (29 loc) · 969 Bytes

readme.md

File metadata and controls

38 lines (29 loc) · 969 Bytes

Bot API

import { Vector3 } from 'three'
import { EtherealEngineBot } from 'ee-bot/src/bot'
import { BotHooks } from 'ee-bot/src/bot/enums/BotHooks'

const maxTimeout = 10 * 1000
const bot = new EtherealEngineBot({ name: 'bot-1', headless: false, verbose: false })
const vector3 = new Vector3()

const domain = process.env.APP_HOST
const locationName = 'test'
const sqrt2 = Math.sqrt(2)

describe('My Bot Tests', () => {

  beforeAll(async () => {
    await bot.launchBrowser()
    await bot.enterLocation(`https://${domain}/location/${locationName}`)
    await bot.delay(1000)
    await bot.runHook(BotHooks.InitializeBot)
  }, maxTimeout)

  afterAll(async () => {
    await bot.delay(1000)
    await bot.quit()
  }, maxTimeout)

  test('Can spawn in the world', async () => {
    expect(
      vector3.copy(await bot.runHook(BotHooks.GetPlayerPosition)).length()
    ).toBeLessThan(sqrt2 * 2) // sqrt2 * 2 is the default size of our spawn area
  })

})