Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We鈥檒l occasionally send you account related emails.

Already on GitHub? Sign in to your account

Housekeeping updates #45

Merged
merged 6 commits into from Jul 23, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
1 change: 1 addition & 0 deletions __tests__/checksums.test.ts
@@ -1,5 +1,6 @@
import * as checksums from '../src/checksums'
import nock from 'nock'
import {afterEach, describe, expect, test} from '@jest/globals'

test('fetches wrapper jars checksums', async () => {
const validChecksums = await checksums.fetchValidChecksums(false)
Expand Down
1 change: 1 addition & 0 deletions __tests__/find.test.ts
@@ -1,5 +1,6 @@
import * as path from 'path'
import * as find from '../src/find'
import {expect, test} from '@jest/globals'

test('finds test data wrapper jars', async () => {
const repoRoot = path.resolve('.')
Expand Down
1 change: 1 addition & 0 deletions __tests__/hash.test.ts
@@ -1,5 +1,6 @@
import * as path from 'path'
import * as hash from '../src/hash'
import {expect, test} from '@jest/globals'

test('can sha256 files', async () => {
const sha = await hash.sha256File(
Expand Down
1 change: 1 addition & 0 deletions __tests__/validate.test.ts
@@ -1,5 +1,6 @@
import * as path from 'path'
import * as validate from '../src/validate'
import {expect, test} from '@jest/globals'

const baseDir = path.resolve('.')

Expand Down