mirror of
https://github.com/gitpod-io/gitpod.git
synced 2025-12-08 17:36:30 +00:00
* [ts] Pin mimimatch and minimist * [server] Update minio * [ts] Remove superfluous node-pre-gyp dep * [ts] Pin jsonwebtoken to 9.0.0 * [grpc] Update grpc-toolsis * [ts] Upgrade from mocha-typescript to @testdeck/mocha * fix rimraf
24 lines
609 B
TypeScript
24 lines
609 B
TypeScript
/**
|
|
* Copyright (c) 2021 Gitpod GmbH. All rights reserved.
|
|
* Licensed under the GNU Affero General Public License (AGPL).
|
|
* See License.AGPL.txt in the project root for license information.
|
|
*/
|
|
|
|
import { suite, test } from "@testdeck/mocha";
|
|
import { log } from "./logging";
|
|
|
|
@suite
|
|
class TestLogging {
|
|
@test public async testLogInfo_output() {
|
|
const testObj = {
|
|
null: null,
|
|
undefined: undefined,
|
|
empty: "",
|
|
foo: "bar",
|
|
number: 0,
|
|
};
|
|
log.info("info logging test", testObj);
|
|
}
|
|
}
|
|
module.exports = new TestLogging();
|