Skip to content

Commit

Permalink
Extract shared logic in maven-build-scan-shared
Browse files Browse the repository at this point in the history
  • Loading branch information
jprinet committed Dec 6, 2023
1 parent db2bd8f commit e226eee
Show file tree
Hide file tree
Showing 29 changed files with 8,450 additions and 451 deletions.
Binary file not shown.
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import * as glob from '@actions/glob'
import * as exec from '@actions/exec'

import * as publish from '../../src/build-scan/publish'
import * as io from '../../src/utils/io'
import * as io from '../../../maven-build-scan-shared/src/io'

const runMock = jest.spyOn(publish, 'publishBuildScan')

Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import * as output from '../../src/build-summary/dump'
import * as input from '../../src/utils/input'
import * as io from '../../src/utils/io'
import * as io from '../../../maven-build-scan-shared/src/io'
import * as githubUtils from '../../src/utils/github'

const outputMock = jest.spyOn(output, 'dump')
Expand Down
2 changes: 1 addition & 1 deletion maven-build-scan-publish/__tests__/data/load.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import * as PropertiesReader from 'properties-reader'

import * as load from '../../src/data/load'
import * as githubUtils from '../../src/utils/github'
import * as layout from '../../src/utils/layout'
import * as layout from '../../../maven-build-scan-shared/src/layout'
import * as props from '../../src/utils/properties'

const loadMock = jest.spyOn(load, 'loadBuildScanData')
Expand Down
Loading

0 comments on commit e226eee

Please sign in to comment.