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’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Naming convention/jest watcher #7315

Merged
merged 5 commits into from
Nov 1, 2018
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.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -65,6 +65,7 @@

### Chore & Maintenance

- `[jest-watcher]` Standardize filenames ([#7314](https://github.com/facebook/jest/pull/7314))
- `[jest-circus]` Standardize file naming in `jest-circus` ([#7301](https://github.com/facebook/jest/pull/7301))
- `[docs]` Add synchronous test.each setup ([#7150](https://github.com/facebook/jest/pull/7150))
- `[docs]` Add `this.extend` to the Custom Matchers API reference ([#7130](https://github.com/facebook/jest/pull/7130))
Expand Down
8 changes: 4 additions & 4 deletions packages/jest-watcher/src/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,9 @@
* @flow
*/

export {default as BaseWatchPlugin} from './base_watch_plugin';
export {default as JestHook} from './jest_hooks';
export {default as PatternPrompt} from './pattern_prompt';
export {default as BaseWatchPlugin} from './BaseWatchPlugin';
export {default as JestHook} from './JestHooks';
export {default as PatternPrompt} from './PatternPrompt';
export * from './constants';
export {default as Prompt} from './lib/Prompt';
export * from './lib/pattern_mode_helpers';
export * from './lib/patternModeHelpers';
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@

'use strict';

import formatTestNameByPattern from '../format_test_name_by_pattern';
import formatTestNameByPattern from '../formatTestNameByPattern';

describe('for multiline test name returns', () => {
const testNames = [
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
// Copyright (c) 2014-present, Facebook, Inc. All rights reserved.

import scroll from '../scroll_list';
import scroll from '../scroll';

it('When offset is -1', () => {
expect(scroll(25, {max: 10, offset: -1})).toEqual({
Expand Down