[DEPRECATED] Common base for my other typescript projects
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

README.md

typescript/devtools

Build Status

About

Normalizing dev tools for other projects in https://code.thunderk.net/typescript/

Be aware that running this tool will modify your project to use tools specific to code.thunderk.net

Usage

Normalize the project

deno run --allow-run --allow-read --allow-write https://code.thunderk.net/typescript/devtools/raw/master/normalize.ts

Use test tools

import {
  describe,
  expect,
  it,
} from "https://code.thunderk.net/typescript/devtools/raw/master/testing.ts";

describe("test", () => {
  it("checks something", () => {
    expect(2 + 3).toEqual(5);
  });
});
Michaël Lemaire d43115cebb Removed unused typings 2 years ago
config Add doc sections and run tool for deno permission flags 2 years ago
doc Add doc sections and run tool for deno permission flags 2 years ago
expect Improve patch/mock and add mockable Deno instance 3 years ago
.editorconfig Added testing tools 3 years ago
.gitignore Added git ignore 3 years ago
README.md Add doc sections and run tool for deno permission flags 2 years ago
cli.ts Add doc sections and run tool for deno permission flags 2 years ago
normalize.ts Add doc sections and run tool for deno permission flags 2 years ago
run Add doc sections and run tool for deno permission flags 2 years ago
system.test.ts Fixed unittest 2 years ago
system.ts Improve patch/mock and add mockable Deno instance 3 years ago
testing.test.ts Fix mock not calling its lifetime function 3 years ago
testing.ts Fix mock not calling its lifetime function 3 years ago
tsconfig.json Added normalize tool 3 years ago