Skip to content

Commit

Permalink
chore: fix type error in e2e test
Browse files Browse the repository at this point in the history
  • Loading branch information
SimenB committed Dec 30, 2020
1 parent 596ebff commit 6895680
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion e2e/Utils.ts
Original file line number Diff line number Diff line change
Expand Up @@ -171,7 +171,11 @@ export const sortLines = (output: string) =>
.map(str => str.trim())
.join('\n');

const DEFAULT_PACKAGE_JSON: PackageJson = {
interface JestPackageJson extends PackageJson {
jest: Config.InitialOptions;
}

const DEFAULT_PACKAGE_JSON: JestPackageJson = {
description: 'THIS IS AN AUTOGENERATED FILE AND SHOULD NOT BE ADDED TO GIT',
jest: {
testEnvironment: 'node',
Expand Down

0 comments on commit 6895680

Please sign in to comment.