Skip to content

Commit 937e057

Browse files
committed
fix: proper whitespace removal
1 parent c76a1a1 commit 937e057

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

packages/e2e-tests/test/e2e.spec.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -778,7 +778,8 @@ describe('e2e', function () {
778778
)
779779
)
780780
.replace(/test>/g, '')
781-
.trim();
781+
// Remove all whitespace
782+
.replace(/\s+/g, '');
782783

783784
expect(deviceId).not.to.equal('unknown');
784785
// Our hashed key is 64 hex chars

0 commit comments

Comments
 (0)