Skip to content

Commit 145b021

Browse files
committed
fix: fixed base64-cache travis issue
1 parent c27acc2 commit 145b021

File tree

9 files changed

+6
-371
lines changed

9 files changed

+6
-371
lines changed

template/test/config/snapshots/utilities.js.md

Lines changed: 0 additions & 13 deletions
This file was deleted.
-110 Bytes
Binary file not shown.

template/test/web/snapshots/index.js.md

Lines changed: 0 additions & 29 deletions
This file was deleted.
-196 Bytes
Binary file not shown.

template/test/web/snapshots/support.js.md

Lines changed: 0 additions & 11 deletions
This file was deleted.
-128 Bytes
Binary file not shown.

test/snapshots/test.js.md

Lines changed: 0 additions & 317 deletions
This file was deleted.

test/snapshots/test.js.snap

-8.67 KB
Binary file not shown.

test/test.js

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,12 @@ test('defaults', async t => {
1919
name: 'my-package-name'
2020
});
2121
t.snapshot(
22-
stream.fileList.sort().filter(name => !name.includes('/snapshots')),
22+
stream.fileList
23+
.sort()
24+
.filter(
25+
name =>
26+
!name.includes('/snapshots') && !name.startsWith('.base64-cache/')
27+
),
2328
'generated files'
2429
);
2530
const content = stream.fileContents('README.md');

0 commit comments

Comments
 (0)