Skip to content

Commit

Permalink
import > require
Browse files Browse the repository at this point in the history
  • Loading branch information
SimenB committed May 27, 2018
1 parent 048edb4 commit 20f9922
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions packages/jest-cli/src/snapshot_interactive_mode.js
Original file line number Diff line number Diff line change
Expand Up @@ -10,12 +10,13 @@

import type {AggregatedResult, AssertionLocation} from 'types/TestResult';

const chalk = require('chalk');
const ansiEscapes = require('ansi-escapes');
const {pluralize} = require('./reporters/utils');
const {ARROW} = require('./constants');
import chalk from 'chalk';
import ansiEscapes from 'ansi-escapes';
import {KEYS} from 'jest-watch';

import {pluralize} from './reporters/utils';
import {ARROW} from './constants';

export default class SnapshotInteractiveMode {
_pipe: stream$Writable | tty$WriteStream;
_isActive: boolean;
Expand Down

0 comments on commit 20f9922

Please sign in to comment.