Skip to content

Commit 373d5f5

Browse files
author
benholloway
committed
minor tweak to help expectations
1 parent 28964e9 commit 373d5f5

File tree

2 files changed

+3
-0
lines changed

2 files changed

+3
-0
lines changed

test/specs/tasks/build.spec.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,7 @@ describe('The Angularity build task', function () {
4040

4141
function expectations(testCase) {
4242
expect([testCase.cwd, BUILD_FOLDER]).toBeEmptyDirectory();
43+
expect([testCase.cwd, TEST_FOLDER ]).toBeEmptyDirectory();
4344
expect(testCase.stderr).toBeHelpWithError(false);
4445
}
4546
});

test/specs/tasks/test.spec.js

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@ var slowIt = helper.jasmineFactory({
1414
});
1515

1616
var BUILD_FOLDER = 'app-build';
17+
var TEST_FOLDER = 'app-test';
1718

1819
describe('The Angularity test task', function () {
1920

@@ -33,6 +34,7 @@ describe('The Angularity test task', function () {
3334

3435
function expectations(testCase) {
3536
expect([testCase.cwd, BUILD_FOLDER]).toBeEmptyDirectory();
37+
expect([testCase.cwd, TEST_FOLDER ]).toBeEmptyDirectory();
3638
expect(testCase.stderr).toBeHelpWithError(false);
3739
}
3840
});

0 commit comments

Comments
 (0)