All files / games/mc/src/services load.ts

100% Statements 14/14
100% Branches 0/0
100% Functions 1/1
100% Lines 14/14

Press n or j to go to the next uncovered block, b, p or k for the previous block.

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21  11x 11x 11x 11x   1x 1x 1x 1x 1x 1x 1x 1x 1x   11x        
import { Encounter, Hero, ModularSet, Scenario } from "../@models";
 
import { EncountersService, HeroesService, ModularSetsService, ScenariosService } from ".";
 
export const load = async (): Promise<[Encounter[], Hero[], ModularSet[], Scenario[]]> => {
    // load json data
    const encountersService = new EncountersService();
    const encounters = await encountersService.load();
 
    const heroesService = new HeroesService();
    const heroes = await heroesService.load();
 
    const modulesService = new ModularSetsService();
    const modules = await modulesService.load();
 
    const scenariosService = new ScenariosService();
    const scenarios = await scenariosService.load();
 
    return [encounters, heroes, modules, scenarios];
};