From 0b939b1cd6c0a03b369b98fabf597ee1e77ae371 Mon Sep 17 00:00:00 2001 From: Dolan Miu Date: Fri, 22 Jun 2018 23:18:07 +0100 Subject: [PATCH] Organise imports --- src/export/packer/compiler.spec.ts | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/src/export/packer/compiler.spec.ts b/src/export/packer/compiler.spec.ts index c87a39a0e8..0bf691ebcb 100644 --- a/src/export/packer/compiler.spec.ts +++ b/src/export/packer/compiler.spec.ts @@ -1,12 +1,11 @@ /* tslint:disable:typedef space-before-function-paren */ import * as fs from "fs"; - -import { Compiler } from "./compiler"; -import { File } from "../../file"; -import { expect } from "chai"; - import * as JSZip from "jszip"; +import { expect } from "chai"; +import { File } from "../../file"; +import { Compiler } from "./compiler"; + describe("Compiler", () => { let compiler: Compiler; let file: File;