mirror of
https://github.com/denoland/std.git
synced 2024-11-22 04:59:05 +00:00
901eef2ad2
* test(log): cleanup test files * work * work
11 lines
272 B
TypeScript
11 lines
272 B
TypeScript
// Copyright 2018-2024 the Deno authors. All rights reserved. MIT license.
|
|
import { BaseHandler } from "./base_handler.ts";
|
|
|
|
export class TestHandler extends BaseHandler {
|
|
public messages: string[] = [];
|
|
|
|
override log(msg: string) {
|
|
this.messages.push(msg);
|
|
}
|
|
}
|