An open API service indexing awesome lists of open source software.

https://github.com/peerigon/typescript-exercises-tools

Tools for writing and validating TypeScript exercises
https://github.com/peerigon/typescript-exercises-tools

assertions comments testing typescript typings validation

Last synced: 11 months ago
JSON representation

Tools for writing and validating TypeScript exercises

Awesome Lists containing this project

README

          

# @peerigon/typescript-exercises-tools

**Tools for writing and validating TypeScript exercises.**

[![](https://img.shields.io/npm/v/@peerigon/typescript-exercises-tools.svg)](https://www.npmjs.com/package/@peerigon/typescript-exercises-tools)
[![](https://img.shields.io/npm/dm/@peerigon/typescript-exercises-tools.svg)](https://www.npmjs.com/package/@peerigon/typescript-exercises-tools)
[![Dependency Status](https://david-dm.org/peerigon/@peerigon/typescript-exercises-tools.svg)](https://david-dm.org/peerigon/@peerigon/typescript-exercises-tools)
[![Build Status](https://travis-ci.com/peerigon/@peerigon/typescript-exercises-tools.svg?branch=master)](https://travis-ci.com/peerigon/@peerigon/typescript-exercises-tools)
[![Coverage Status](https://coveralls.io/repos/github/peerigon/typescript-exercises-tools/badge.svg?branch=master)](https://coveralls.io/github/peerigon/typescript-exercises-tools?branch=master)
[![Known Vulnerabilities](https://snyk.io/test/github/peerigon/typescript-exercises-tools/badge.svg)](https://snyk.io/test/github/peerigon/typescript-exercises-tools)

This module allows you to annotate expected type errors in your TypeScript code like this:

```ts
export const add = (a: number, b: string) => {
return a + b;
};

// 💥 Expect error 2345: Argument of type '4' is not assignable to parameter of type...
add(3, 4);
```

With the TypeScript language service plugin provided by this module, these expected type errors will show up as a suggestion instead of an error:

![Screenshot of an editor that shows a type error as a suggestion](./docs/editor-screenshot-1.jpg)
![Screenshot of an editor that shows the suggestion popup](./docs/editor-screenshot-2.jpg)

Furthermore, these comments will cause the editor to show an error if there is _no type error_ at this location:

![Screenshot of an editor that shows an error when there is no type error](./docs/editor-screenshot-3.jpg)

At the time of writing, only editors use TypeScript language service plugins. Calling `tsc` from the command line will not execute the plugin. That's why there is also a programmatic API that allows you to do assertions on the program:

```ts
import { assertProgramToOnlyHaveExpectedErrors } from "@peerigon/typescript-exercises-tools/tests";

test("The program has only expected errors", () => {
assertProgramToOnlyHaveExpectedErrors("/path/to/module.ts");
});
```

This module is ideal for:

- testing types by doing assertions on the behavior of types
- creating TypeScript exercises

## Installation

```
npm install @peerigon/typescript-exercises-tools
```

Now you need to add the TypeScript language service plugin to your `tsconfig.json`:

```json
{
"compilerOptions": {
"plugins": [
{
"name": "@peerigon/typescript-exercises-tools"
}
]
}
}
```

**Please note that you need to configure your editor to use your local TypeScript version.** Otherwise TypeScript may not find the plugin. If you're using VSCode, create a file in your repository at `.vscode/settings.json` and add this:

```json
{
"typescript.tsdk": "node_modules/typescript/lib"
}
```

## API

### assertProgramToOnlyHaveExpectedErrors(
    programPath: string,
    compilerOptions?: ts.CompilerOptions,
): void

Compiles the program at the given `programPath` and throws the first unexpected error it encounters. It's recommended to use an absolute path. If you don't pass any `compilerOptions` to this function, it uses TypeScript's internal `findConfigFile()` to locate the closest `tsconfig.json` to `programPath`.

```ts
import { assertProgramToOnlyHaveExpectedErrors } from "@peerigon/typescript-exercises-tools/tests";

assertProgramToOnlyHaveExpectedErrors("/path/to/module.ts"); // may throw

assertProgramToOnlyHaveExpectedErrors(
"/path/to/module.ts",
{ strict: true }, // custom compiler options
);
```

## License

Unlicense

## Sponsors

[](https://peerigon.com)