Module

x/cliffy/keypress/test.ts

Command line framework for deno 🦕 Including Commandline-Interfaces, Prompts, CLI-Table, Arguments Parser and more...
Extremely Popular
Go to Latest
File
import { assertEquals } from "../dev_deps.ts";import { KeyPressEvent } from "./mod.ts";
Deno.test({ name: "[keypress] should create KeyPressEvent", fn() { const event = new KeyPressEvent("keydown", {}); assertEquals(event.type, "keydown"); },});