File tree 5 files changed +39
-3
lines changed
5 files changed +39
-3
lines changed Original file line number Diff line number Diff line change
1
+ {
2
+ // Use IntelliSense to learn about possible attributes.
3
+ // Hover to view descriptions of existing attributes.
4
+ // For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
5
+ "version" : " 0.2.0" ,
6
+ "configurations" : [
7
+ {
8
+ "type" : " node" ,
9
+ "request" : " launch" ,
10
+ "name" : " Run NPM Test" ,
11
+ "runtimeExecutable" : " npm" ,
12
+ "runtimeArgs" : [" run" , " test" ],
13
+ "skipFiles" : [" <node_internals>/**" ]
14
+ }
15
+ ]
16
+ }
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " indiepitcher" ,
3
- "version" : " 1.0.1 " ,
3
+ "version" : " 1.1.0 " ,
4
4
"main" : " ./dist/index.js" ,
5
5
"module" : " ./dist/index.mjs" ,
6
6
"types" : " ./dist/index.d.ts" ,
Original file line number Diff line number Diff line change
1
+ export class IndiePitcherResponseError extends Error {
2
+ statusCode : number ;
3
+
4
+ constructor ( message : string , statusCode : number ) {
5
+ super ( message ) ;
6
+ this . name = 'IndiePitcherError' ;
7
+ this . statusCode = statusCode ;
8
+ }
9
+ }
Original file line number Diff line number Diff line change @@ -8,6 +8,7 @@ import type {
8
8
SendEmailToContact ,
9
9
SendEmailToMailingList ,
10
10
} from './dtos' ;
11
+ import { IndiePitcherResponseError } from './errors' ;
11
12
import type {
12
13
DataResponse ,
13
14
EmptyResponse ,
@@ -32,8 +33,8 @@ export class IndiePitcher {
32
33
const response = await fetch ( `${ this . baseUrl } ${ path } ` , options ) ;
33
34
34
35
if ( ! response . ok ) {
35
- const error = await response . json ( ) ;
36
- throw new Error ( error ) ;
36
+ const json = await response . json ( ) ;
37
+ throw new IndiePitcherResponseError ( json . reason ?? 'Unknown reason' , response . status ) ;
37
38
}
38
39
39
40
const data = await response . json ( ) ;
Original file line number Diff line number Diff line change 1
1
import { IndiePitcher } from '.' ;
2
+ import type { IndiePitcherResponseError } from './errors' ;
2
3
3
4
require ( 'dotenv' ) . config ( ) ;
4
5
const apiKey = process . env . API_KEY ;
@@ -10,6 +11,15 @@ afterEach(() => {
10
11
return new Promise ( ( resolve ) => setTimeout ( resolve , 1000 ) ) ;
11
12
} ) ;
12
13
14
+ test ( 'invalid API key' , async ( ) => {
15
+ const indiePitcher = new IndiePitcher ( 'xxx' ) ;
16
+ try {
17
+ await indiePitcher . listMailingLists ( ) ;
18
+ } catch ( error ) {
19
+ expect ( ( error as IndiePitcherResponseError ) . message ) . toBe ( 'Unauthorized' ) ;
20
+ }
21
+ } ) ;
22
+
13
23
test ( 'list mailing lists' , async ( ) => {
14
24
const data = await indiePitcher . listMailingLists ( ) ;
15
25
expect ( data . data . length ) . toBe ( 2 ) ;
You can’t perform that action at this time.
0 commit comments