Skip to content

Commit 53d6e71

Browse files
committed
Removed FocusTest
1 parent d313006 commit 53d6e71

2 files changed

Lines changed: 2 additions & 3 deletions

File tree

src/Compiler.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ export function compile(fileNames: string[], options: CompilerOptions): void {
5555
if (path.isAbsolute(options.outFile)) {
5656
outPath = options.outFile;
5757
} else {
58-
// append to workinDir or outDir
58+
// append to workingDir or outDir
5959
outPath = path.resolve(options.outDir, options.outFile);
6060
}
6161
} else {

test/compiler/outfile.spec.ts

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { Expect, SetupFixture, Teardown, Test, TestCase, FocusTest } from "alsatian";
1+
import { Expect, SetupFixture, Teardown, Test, TestCase } from "alsatian";
22
import * as fs from "fs";
33
import * as path from "path";
44
import { execCommandLine } from "../../src/Compiler";
@@ -15,7 +15,6 @@ export class CompilerOutFileTests {
1515
}
1616

1717
@Test("Compile project")
18-
@FocusTest
1918
public outFileTest() {
2019
// Compile project
2120
execCommandLine(["--outFile", this.outFileAbsPath, path.join(__dirname, "./testfiles/out_file.ts")]);

0 commit comments

Comments
 (0)