Gero Posmyk-Leinemann cc52d25280
Upgrade yarn packages (#18128)
* [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
2023-07-03 14:47:19 +08:00

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();