Skip to content

Commit f49ea47

Browse files
committed
test: print deviceId
1 parent d904584 commit f49ea47

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

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

+4-1
Original file line numberDiff line numberDiff line change
@@ -782,7 +782,10 @@ describe('e2e', function () {
782782

783783
expect(deviceId).not.to.equal('unknown');
784784
// Our hashed key is 64 hex chars
785-
expect(deviceId).to.match(/^[A-Fa-f0-9]{64}$/);
785+
expect(deviceId).to.match(
786+
/^[A-Fa-f0-9]{64}$/,
787+
`deviceId is not a hash ${deviceId}`
788+
);
786789
});
787790

788791
context('post-4.2', function () {

0 commit comments

Comments
 (0)