Path: blob/main/components/gitpod-db/src/tables.spec.ts
2498 views
/**1* Copyright (c) 2021 Gitpod GmbH. All rights reserved.2* Licensed under the GNU Affero General Public License (AGPL).3* See License.AGPL.txt in the project root for license information.4*/56import * as chai from "chai";7const expect = chai.expect;8import { suite, test, timeout } from "@testdeck/mocha";910import { GitpodTableDescriptionProvider } from "./tables";1112@suite.only13class TablesSpec {14async before() {}1516async after() {}1718@test(timeout(10000))19public async createAndFindATeam() {20const thing = new GitpodTableDescriptionProvider();21expect(() => thing.getSortedTables()).to.not.throw();22}23}2425module.exports = new TablesSpec();262728