Skip to content

Commit

Permalink
Small adjustments for optional type
Browse files Browse the repository at this point in the history
  • Loading branch information
ahnpnl committed Mar 4, 2018
1 parent c394dcc commit 8fc8215
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/jest-types.ts
Expand Up @@ -41,7 +41,7 @@ export interface FullJestConfig {
coveragePathIgnorePatterns: string[];
cwd: Path;
detectLeaks: boolean;
displayName: string;
displayName: string | null;
forceCoverageMatch: Glob[];
globals: ConfigGlobals;
haste: HasteConfig;
Expand All @@ -60,7 +60,7 @@ export interface FullJestConfig {
roots: Path[];
runner: string;
setupFiles: Path[];
setupTestFrameworkScriptFile: Path;
setupTestFrameworkScriptFile: Path | null;
skipNodeResolution: boolean;
snapshotSerializers: Path[];
testEnvironment: string;
Expand Down

0 comments on commit 8fc8215

Please sign in to comment.