Move newIDE test files next to the test source files (no __tests__ folder)

This commit is contained in:
Florian Rival
2017-12-09 18:05:59 +01:00
parent 454657b00f
commit 6e38ee6d16
2 changed files with 3 additions and 3 deletions

View File

@@ -1,4 +1,4 @@
import { fuzzyOrEmptyFilter } from '../FuzzyOrEmptyFilter';
import { fuzzyOrEmptyFilter } from './FuzzyOrEmptyFilter';
describe('FuzzyOrEmptyFilter', () => {
it('filter as expected', () => {

View File

@@ -5,8 +5,8 @@ import {
saveToHistory,
undo,
redo,
} from '../History';
import { makeTestProject } from '../../fixtures/TestProject';
} from './History';
import { makeTestProject } from '../fixtures/TestProject';
const gd = global.gd;
describe('History', () => {