UNPKG

screeps-cartographer

Version:

An advanced (and open source) movement library for Screeps

23 lines (22 loc) 646 B
import { TestResult } from '../tests'; import { CartographerTestCase } from './CartographerTestCase'; export declare class TestStuck extends CartographerTestCase { _creeps: { c1: string; c2: string; c3: string; c4: string; }; timeout: number; testRegion: { w: number; h: number; }; targetPos1: RoomPosition | undefined; blockingPos1: RoomPosition | undefined; blockingPos2: RoomPosition | undefined; blockingPos3: RoomPosition | undefined; targetPos2: RoomPosition | undefined; phase: 'setup' | 'run'; test(): TestResult.PASS | TestResult.PENDING; }