Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(config): snapshot config descriptions #3459

Merged
merged 1 commit into from
Jun 23, 2021
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1,693 changes: 1,693 additions & 0 deletions tap-snapshots/test/lib/utils/config/definitions.js.test.cjs

Large diffs are not rendered by default.

5 changes: 5 additions & 0 deletions test/lib/utils/config/definitions.js
Original file line number Diff line number Diff line change
@@ -17,6 +17,11 @@ const defpath = '../../../../lib/utils/config/definitions.js'
delete process.env.NODE_ENV
const definitions = require(defpath)

// Tie the definitions to a snapshot so that if they change we are forced to
// update snapshots, which rebuilds the docs
for (const key of Object.keys(definitions))
t.matchSnapshot(definitions[key].describe(), `config description for ${key}`)

const isWin = '../../../../lib/utils/is-windows.js'

// snapshot these just so we note when they change