Skip to content

Commit

Permalink
Rename 'test-parser' to 'parser-types'
Browse files Browse the repository at this point in the history
  • Loading branch information
Michal Dorner committed Jan 10, 2021
1 parent aed3b29 commit 64b8f12
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/main.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import * as core from '@actions/core'
import * as github from '@actions/github'
import {parseJestJunit} from './parsers/jest-junit/jest-junit-parser'
import {parseDartJson} from './parsers/dart-json/dart-json-parser'
import {ParseOptions, ParseTestResult} from './parsers/test-parser'
import {ParseOptions, ParseTestResult} from './parsers/parser-types'
import {getFileContent, normalizeDirPath} from './utils/file-utils'
import {listFiles} from './utils/git'
import {getCheckRunSha} from './utils/github-utils'
Expand Down
2 changes: 1 addition & 1 deletion src/parsers/dart-json/dart-json-parser.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import {Annotation, ParseOptions, TestResult} from '../test-parser'
import {Annotation, ParseOptions, TestResult} from '../parser-types'

import {normalizeFilePath} from '../../utils/file-utils'
import {Align, Icon, link, table} from '../../utils/markdown-utils'
Expand Down
2 changes: 1 addition & 1 deletion src/parsers/jest-junit/jest-junit-parser.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import {Annotation, ParseOptions, TestResult} from '../test-parser'
import {Annotation, ParseOptions, TestResult} from '../parser-types'
import {parseStringPromise} from 'xml2js'

import {JunitReport, TestCase, TestSuite, TestSuites} from './jest-junit-types'
Expand Down
File renamed without changes.

0 comments on commit 64b8f12

Please sign in to comment.