22 releases

new 0.10.0 Apr 14, 2024
0.9.5 Sep 8, 2023
0.9.4 Jul 30, 2023
0.9.2 Oct 29, 2022
0.1.0 Jan 15, 2020

#76 in Value formatting

Download history 27/week @ 2023-12-22 24/week @ 2023-12-29 44/week @ 2024-01-05 121/week @ 2024-01-12 29/week @ 2024-01-19 18/week @ 2024-01-26 33/week @ 2024-02-02 46/week @ 2024-02-09 72/week @ 2024-02-16 108/week @ 2024-02-23 68/week @ 2024-03-01 52/week @ 2024-03-08 39/week @ 2024-03-15 38/week @ 2024-03-22 102/week @ 2024-03-29 37/week @ 2024-04-05

218 downloads per month
Used in 12 crates

MIT license

47KB
1.5K SLoC

JavaScript 583 SLoC // 0.1% comments Rust 542 SLoC // 0.0% comments TypeScript 136 SLoC

dprint-development

Crate for helping to test Rust dprint plugins.

Test Specs

This crate provides a helper function for running test specs defined in text files (for the API, see functions) in the documentation).

This allows you to write tests in the following format (example with TypeScript):

== description goes here ==
const    u    =     2;

[expect]
const u = 2;

For a real world example, see dprint-plugin-typescript/tests.

Changing File Name

By default, the file name used is the one provided to ParseSpecOptions, but you can change the default file name used on a per test spec file basis by adding for example the following to the top of the file:

-- file.tsx --

Configuration

To change the configuration, use the following at the top of the file and below the file name if provided:

~~ indentWidth: 2, useTabs: true ~~

Test Spec Description Helpers

You may change how all the tests are run by adding certain words to a test description:

  • (only) - Only runs this test.
  • (skip) - Skips running this test.
  • (skip-format-twice) - Skips formatting the output again to ensure it stays the same—only formats once.
  • (trace) - Only runs this test and outputs the IR graph to an HTML file to view in a web browser. Must be run with cargo test --features tracing

For example, adding (only) to the description will only run the first test in this example (you'll need to filter using cargo test to only run that specific test though):

== test 1 (only) ==
const    u    =     2;

[expect]
const u = 2;

== test 2 ==
console.log(  10 )

[expect]
console.log(10);

Only Running Tests In A File

Note the name of the test that corresponds to the current file, and run with cargo test <name of test>

Overwriting Failures

Sometimes a change may cause large test failures (ex. changing default space indentation from 4 spaces to 2 spaces). If you don't want to update all the tests manually, you can specify fix_failures: true to RunSpecsOptions when calling run_specs.

Dependencies

~5–16MB
~173K SLoC