Skip to content

Commit 5f96138

Browse files
chore: update app check integration tests (#2140)
1 parent 7a21a5b commit 5f96138

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/integration/app-check.spec.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,7 @@ describe('admin.appCheck', () => {
103103
return admin.appCheck().verifyToken(validToken.token)
104104
.then((verifedToken) => {
105105
expect(verifedToken).to.have.keys(['token', 'appId']);
106-
expect(verifedToken.token).to.have.keys(['iss', 'sub', 'aud', 'exp', 'iat', 'app_id']);
106+
expect(verifedToken.token).to.include.keys(['iss', 'sub', 'aud', 'exp', 'iat', 'app_id']);
107107
expect(verifedToken.token.app_id).to.be.a('string').and.equals(appId);
108108
});
109109
});

0 commit comments

Comments
 (0)