micromark / micromark-extension-frontmatter

Compare fc8c4d3 ... +1 ... 81565e6

Coverage Reach
lib/syntax.js lib/html.js matters.js index.js

No flags found

Use flags to group coverage reports by test type, project and/or folders.
Then setup custom commit statuses and notifications for each flag.

e.g., #unittest #integration

#production #enterprise

#frontend #backend

Learn more about Codecov Flags here.

Showing 1 of 3 files from the diff.
Other files ignored by Codecov
package.json has changed.
readme.md has changed.

@@ -25,14 +25,10 @@
Loading
25 25
  /** @type {ConstructRecord} */
26 26
  const flow = {}
27 27
  let index = -1
28 -
  /** @type {Matter} */
29 -
  let matter
30 -
  /** @type {number} */
31 -
  let code
32 28
33 29
  while (++index < settings.length) {
34 -
    matter = settings[index]
35 -
    code = fence(matter, 'open').charCodeAt(0)
30 +
    const matter = settings[index]
31 +
    const code = fence(matter, 'open').charCodeAt(0)
36 32
    if (code in flow) {
37 33
      // @ts-expect-error it clearly does exist.
38 34
      flow[code].push(parse(matter))

Everything is accounted for!

No changes detected that need to be reviewed.
What changes does Codecov check for?
Lines, not adjusted in diff, that have changed coverage data.
Files that introduced coverage data that had none before.
Files that have missing coverage data that once were tracked.
Files Coverage
dev 100.00%
Project Totals (4 files) 100.00%
Loading