merge: Made all tests follow file strcture convention already in-place (#820)

* add empty line to end of file

* Move all test files to /test following convention
This commit is contained in:
RenatoLopes771
2021-10-28 01:30:04 -03:00
committed by GitHub
parent 970b4f2827
commit 1cef191494
6 changed files with 6 additions and 6 deletions

View File

@ -1,4 +1,4 @@
import { breadthFirstSearch, depthFirstSearch } from './FloodFill'
import { breadthFirstSearch, depthFirstSearch } from '../FloodFill'
// some constants
const black = [0, 0, 0]

View File

@ -1,4 +1,4 @@
import { iterate, Vector2 } from './KochSnowflake'
import { iterate, Vector2 } from '../KochSnowflake'
describe('KochSnowflake', () => {
it('should produce the correctly-transformed vectors', () => {