Skip to content

Commit

Permalink
fix: update dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
prototypicalpro committed Jun 25, 2021
1 parent 0e463ab commit 5b89b92
Show file tree
Hide file tree
Showing 4 changed files with 12,541 additions and 4,900 deletions.
4 changes: 2 additions & 2 deletions __tests__/getConfig.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ describe('getConfig', () => {

test('getConfig returns a config from a YAML', async () => {
const filepath = path.resolve(__dirname, 'testconfig.yaml')
const expected = yaml.safeLoad(
const expected = yaml.load(
await fs.promises.readFile(filepath, 'utf8')
) as Record<string, unknown>
const res = await getConfig({configFile: filepath})
Expand Down Expand Up @@ -53,7 +53,7 @@ describe('getConfig', () => {
const url =
'https://raw.githubusercontent.com/aperture-science-incorporated/.github/master/repolinter.yaml'
const filepath = path.resolve(__dirname, 'testconfig.yaml')
const expected = yaml.safeLoad(
const expected = yaml.load(
await fs.promises.readFile(filepath, 'utf8')
) as Record<string, unknown>
const scope = nock('https://raw.githubusercontent.com')
Expand Down
Loading

0 comments on commit 5b89b92

Please sign in to comment.