• Home
  • Features
  • Pricing
  • Docs
  • Announcements
  • Sign In

source-academy / js-slang / 15237418122

25 May 2025 11:31AM UTC coverage: 77.048% (-3.5%) from 80.538%
15237418122

push

github

web-flow
Rewrite: Stepper (#1742)

3433 of 4826 branches covered (71.14%)

Branch coverage included in aggregate %.

1032 of 1260 new or added lines in 27 files covered. (81.9%)

440 existing lines in 29 files now uncovered.

10099 of 12737 relevant lines covered (79.29%)

142411.96 hits per line

Source File
Press 'n' to go to next uncovered line, 'b' for previous

75.0
/src/modules/utils.ts
1
import * as _ from 'lodash'
64✔
2

3
import type { RecursivePartial } from '../types'
4
import type { ImportOptions } from './moduleTypes'
5
import { defaultAnalysisOptions } from './preprocessor/analyzer'
64✔
6

7
export function mergeImportOptions(src?: RecursivePartial<ImportOptions>): ImportOptions {
64✔
UNCOV
8
  const baseOptions = _.cloneDeep(defaultAnalysisOptions)
×
UNCOV
9
  return _.merge(baseOptions, src as any)
×
10
}
11

12
/**
13
 * Checks if the given string refers to a Source module instead of a local module
14
 */
15
export const isSourceModule = (path: string) => !path.startsWith('.') && !path.startsWith('/')
413✔
STATUS · Troubleshooting · Open an Issue · Sales · Support · CAREERS · ENTERPRISE · START FREE · SCHEDULE DEMO
ANNOUNCEMENTS · TWITTER · TOS & SLA · Supported CI Services · What's a CI service? · Automated Testing

© 2025 Coveralls, Inc