github
85 of 85 branches covered (100.0%)
Branch coverage included in aggregate %.
2993 of 4436 relevant lines covered (67.47%)
0.68 hits per line
1 |
/**
|
1✔ |
2 |
* @module Errors |
1✔ |
3 |
*/ |
1✔ |
4 |
|
1✔ |
5 |
export class JWTError extends Error { |
|
6 |
constructor() { |
1✔ |
7 |
super("Invalid JSON Web Token");
|
× |
8 |
Object.setPrototypeOf(this, JWTError.prototype);
|
× |
9 |
} |
× |
10 |
} |
1✔ |