File tree Expand file tree Collapse file tree 4 files changed +15
-20
lines changed Expand file tree Collapse file tree 4 files changed +15
-20
lines changed Original file line number Diff line number Diff line change 1
1
{
2
- "require" : [
3
- " ts-node/register" ,
4
- " source-map-support/register" ,
5
- " ./css-modules-hook.cjs" ,
6
- " global-jsdom/register"
7
- ],
2
+ "loader" : " ts-node/esm" ,
8
3
"extension" : [" ts" , " tsx" ],
9
4
"recursive" : true ,
10
5
"timeout" : 10000
Original file line number Diff line number Diff line change 1
- export * from './CICommitLink'
2
- export * from './EnvelopesWrapper'
3
- export * from './ExecutionSummary'
4
- export * from './FilteredResults'
5
- export * from './GherkinDocumentList'
6
- export * from './HighLight'
7
- export * from './NoMatchResult'
8
- export * from './QueriesWrapper'
9
- export * from './SearchBar'
10
- export * from './SearchWrapper'
11
- export * from './StatusesSummary'
1
+ export * from './CICommitLink.js '
2
+ export * from './EnvelopesWrapper.js '
3
+ export * from './ExecutionSummary.js '
4
+ export * from './FilteredResults.js '
5
+ export * from './GherkinDocumentList.js '
6
+ export * from './HighLight.js '
7
+ export * from './NoMatchResult.js '
8
+ export * from './QueriesWrapper.js '
9
+ export * from './SearchBar.js '
10
+ export * from './SearchWrapper.js '
11
+ export * from './StatusesSummary.js '
Original file line number Diff line number Diff line change 1
1
import assert from 'assert'
2
2
import ReactDOM from 'react-dom'
3
3
import React from 'react'
4
- import { HighLight } from '../src/components/app'
4
+ import { HighLight } from '../src/components/app/index.js '
5
5
import { JSDOM } from 'jsdom'
6
- import SearchQueryContext , { SearchQueryCtx } from '../src/SearchQueryContext'
6
+ import SearchQueryContext , { SearchQueryCtx } from '../src/SearchQueryContext.js '
7
7
8
8
describe ( 'HighLight' , ( ) => {
9
9
function renderHighlight ( text : string , query : string , markdown : boolean ) : Document {
Original file line number Diff line number Diff line change 1
1
import assert from 'assert'
2
- import isTagExpression from '../src/isTagExpression'
2
+ import isTagExpression from '../src/isTagExpression.js '
3
3
4
4
describe ( 'isTagExpression' , ( ) => {
5
5
it ( 'returns false with empty string' , ( ) => {
You can’t perform that action at this time.
0 commit comments