1/** 2 * Copyright (c) 2020 Gitpod GmbH. All rights reserved. 3 * Licensed under the GNU Affero General Public License (AGPL). 4 * See License.AGPL.txt in the project root for license information. 5 */ 6 7import { Container } from "inversify"; 8import { dbContainerModule } from "./container-module"; 9 10export const testContainer = new Container(); 11testContainer.load(dbContainerModule()); 12 13