@@ -109,7 +109,7 @@ describe('ApiController', () => {
109
109
await mongod . stop ( ) ;
110
110
} ) ;
111
111
112
- describe ( '/POST /api/ v1/hive/post_comment' , ( ) => {
112
+ describe ( '/POST /v1/hive/post_comment' , ( ) => {
113
113
it ( 'should post a comment to HIVE blockchain' , async ( ) => {
114
114
const jwtToken = 'test_jwt_token' ;
115
115
const body = {
@@ -120,7 +120,7 @@ describe('ApiController', () => {
120
120
} ;
121
121
122
122
return request ( app . getHttpServer ( ) )
123
- . post ( '/api/ v1/hive/post_comment' )
123
+ . post ( '/v1/hive/post_comment' )
124
124
. set ( 'Authorization' , `Bearer ${ jwtToken } ` )
125
125
. send ( body )
126
126
. expect ( 201 )
@@ -135,13 +135,13 @@ describe('ApiController', () => {
135
135
} ) ;
136
136
} ) ;
137
137
138
- describe ( '/POST /api/ v1/hive/linkaccount' , ( ) => {
138
+ describe ( '/POST /v1/hive/linkaccount' , ( ) => {
139
139
it ( 'should link a Hive account' , async ( ) => {
140
140
const jwtToken = 'test_jwt_token' ;
141
141
const body = { username : 'test-account' } ;
142
142
143
143
return request ( app . getHttpServer ( ) )
144
- . post ( '/api/ v1/hive/linkaccount' )
144
+ . post ( '/v1/hive/linkaccount' )
145
145
. set ( 'Authorization' , `Bearer ${ jwtToken } ` )
146
146
. send ( body )
147
147
. expect ( 201 )
@@ -153,12 +153,12 @@ describe('ApiController', () => {
153
153
} ) ;
154
154
} ) ;
155
155
156
- describe ( '/GET /api/ v1/profile' , ( ) => {
156
+ describe ( '/GET /v1/profile' , ( ) => {
157
157
it ( 'should get the user profile' , async ( ) => {
158
158
const jwtToken = 'test_jwt_token' ;
159
159
160
160
return request ( app . getHttpServer ( ) )
161
- . get ( '/api/ v1/profile' )
161
+ . get ( '/v1/profile' )
162
162
. set ( 'Authorization' , `Bearer ${ jwtToken } ` )
163
163
. expect ( 200 )
164
164
. then ( response => {
@@ -172,7 +172,7 @@ describe('ApiController', () => {
172
172
} ) ;
173
173
} ) ;
174
174
175
- describe ( '/GET /api/ v1/hive/linked-account/list' , ( ) => {
175
+ describe ( '/GET /v1/hive/linked-account/list' , ( ) => {
176
176
it ( 'should list linked accounts' , async ( ) => {
177
177
const jwtToken = 'test_jwt_token' ;
178
178
@@ -181,7 +181,7 @@ describe('ApiController', () => {
181
181
await linkedAccountsRepository . verify ( link . _id ) ;
182
182
183
183
return request ( app . getHttpServer ( ) )
184
- . get ( '/api/ v1/hive/linked-account/list' )
184
+ . get ( '/v1/hive/linked-account/list' )
185
185
. set ( 'Authorization' , `Bearer ${ jwtToken } ` )
186
186
. expect ( 200 )
187
187
. then ( response => {
0 commit comments