Skip to content

Commit

Permalink
fix(core): fix unit tests
Browse files Browse the repository at this point in the history
  • Loading branch information
tgreyuk committed Jun 15, 2024
1 parent 57aebaf commit 97f35ff
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 5 deletions.
2 changes: 1 addition & 1 deletion docs/pages/plugins/frontmatter/options.mdx
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { Callout, FileTree } from "nextra/components";
import { Callout } from "nextra/components";

# Options

Expand Down
8 changes: 5 additions & 3 deletions packages/typedoc-plugin-frontmatter/src/options/types.ts
Original file line number Diff line number Diff line change
@@ -1,12 +1,14 @@
/**
* Describes the options declared by the plugin.
*
/*
* @privateRemarks
*
* THIS FILE IS AUTO GENERATED FROM THE OPTIONS CONFIG. DO NOT EDIT DIRECTLY
*
* @module
*/

/**
* Describes the options declared by the plugin.
*/
export interface PluginOptions {
/**
* Specify which comment block tags should be added to frontmatter.
Expand Down
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
import * as fs from 'fs';
import * as path from 'path';
import { Comment } from 'typedoc';
import { getFrontmatterTags } from '../../dist/app/tags';
import { FrontmatterNamingConvention } from '../../dist/options/maps';
import { getFrontmatterTags } from '../../dist/tags';

describe(`Options:`, () => {
beforeAll(async () => {});
Expand Down

0 comments on commit 97f35ff

Please sign in to comment.