1. @markedjs/testutils
Test utilities for marked and marked extensions
@markedjs/testutils
Package: @markedjs/testutils
Created by: markedjs
Last modified: Tue, 23 Apr 2024 04:30:34 GMT
Version: 12.0.2-0
License: MIT
Downloads: 602
Repository: https://github.com/markedjs/testutils

Install

npm install @markedjs/testutils
yarn add @markedjs/testutils

@markedjs/testutils

Test utilities for marked and marked extensions.

Versioning

This is versioned as the version of marked that it includes tests for with the prerelease version being an integer that gets incremented when we release a new fix or feature without updating the marked version.

We recommend to pin to a single version instead of using a range since any update may contain breaking changes.

Example

 // package.json
"dependencies": {
  "@markedjs/testutils": "9.1.0-0"
}

API

getAllMarkedSpecTests()

Get all marked Tests

getTests(dirs)

Get Tests from a directory or file.
dirs can be a string or an array of strings.
The return type is the same as the input a Tests object or an array of Tests objects.

htmlIsEqual(actual, expected)

Check if html will display the same.

firstDiff(actual, expected, padding)

Get the first difference between actual and expected HTML. Returns an object with the characters around the index of the first difference in the expected and actual strings.

outputCompletionTable(title, tests)

Display a table in stdout that lists the sections and what percentage of the tests are not marked shouldFail.

runTests({tests, defaultMarkedOptions, parse, addExtension, isEqual, diff})

Run spec tests

runAllMarkedSpecTests({addExtension, outputCompletionTables})

Run all marked specs with an added extension and optionally output completion table.

Arguments

tests

 interface Tests {
  total: number;
  pass: number;
  specs: Spec[];
}

interface Spec {
  section?: string;
  markdown: string;
  html: string;
  example?: number;
  options?: MarkedOptions;
  only?: boolean;
  skip?: boolean;
  shouldFail?: boolean;
}

defaultMarkedOptions

 type defaultMarkedOptions = MarkedOptions;

parse

 function parse(
  markdown: string,
  options: MarkedOptions,
  addExtension: addExtension,
): string;

addExtension

 function addExtension(marked: Marked): void;

isEqual

 function isEqual(actual: string, expected: string): boolean;

diff

 function diff(
  actual: string,
  expected: string,
  padding: number,
): { expected: string; actual: string };

RELATED POST

Enhancing Vue.js Development: Harnessing the Potential of Vue-Loader

Enhancing Vue.js Development: Harnessing the Potential of Vue-Loader

Simplify Data Validation in Vue.js: A Step-by-Step Guide to Using Regex

Simplify Data Validation in Vue.js: A Step-by-Step Guide to Using Regex

Troubleshooting Made Easy: Common Issues and Solutions with vue-loader Without vue-cli

Troubleshooting Made Easy: Common Issues and Solutions with vue-loader Without vue-cli

Optimizing Webpack 4 with Vue CLI 3: Disabling the Cache-Loader

Optimizing Webpack 4 with Vue CLI 3: Disabling the Cache-Loader

Step-by-Step Guide: How to Add a Function to Your Vuex Plugin

Step-by-Step Guide: How to Add a Function to Your Vuex Plugin