@@ -54,36 +54,85 @@ describe('Client Methods (Without API Key)', () => {
54
54
expect ( response . data ) . toBeDefined ( ) ;
55
55
} ) ;
56
56
57
- it ( 'Runs Client#cosmeticsList ()' , async ( ) => {
58
- const response = await client . cosmeticsList ( ) ;
57
+ it ( 'Runs Client#allCosmetics ()' , async ( ) => {
58
+ const response = await client . allCosmetics ( ) ;
59
59
60
60
expect ( response . status ) . toBe ( 200 ) ;
61
61
expect ( response . data ) . toBeDefined ( ) ;
62
62
} ) ;
63
63
64
- it ( 'Runs Client#cosmeticsByID ()' , async ( ) => {
65
- const response = await client . cosmeticsByID ( { id : 'CID_022_Athena_Commando_F' } ) ;
64
+ it ( 'Runs Client#brCosmeticsList ()' , async ( ) => {
65
+ const response = await client . brCosmeticsList ( ) ;
66
66
67
67
expect ( response . status ) . toBe ( 200 ) ;
68
68
expect ( response . data ) . toBeDefined ( ) ;
69
69
} ) ;
70
70
71
- it ( 'Runs Client#cosmeticsSearch ()' , async ( ) => {
72
- const response = await client . cosmeticsSearch ( { name : 'Recon' , matchMethod : 'starts' } ) ;
71
+ it ( 'Runs Client#trackCosmeticsList ()' , async ( ) => {
72
+ const response = await client . trackCosmeticsList ( ) ;
73
73
74
74
expect ( response . status ) . toBe ( 200 ) ;
75
75
expect ( response . data ) . toBeDefined ( ) ;
76
76
} ) ;
77
77
78
- it ( 'Runs Client#cosmeticsSearchAll ()' , async ( ) => {
79
- const response = await client . cosmeticsSearchAll ( { name : 'Recon' , matchMethod : 'starts' } ) ;
78
+ it ( 'Runs Client#instrumentCosmeticsList ()' , async ( ) => {
79
+ const response = await client . instrumentCosmeticsList ( ) ;
80
80
81
81
expect ( response . status ) . toBe ( 200 ) ;
82
82
expect ( response . data ) . toBeDefined ( ) ;
83
83
} ) ;
84
84
85
- it ( 'Runs Client#cosmeticsSearchByIDs()' , async ( ) => {
86
- const response = await client . cosmeticsSearchByIDs ( { id : [ 'CID_022_Athena_Commando_F' , 'CID_242_Athena_Commando_F_Bullseye' ] } ) ;
85
+ it ( 'Runs Client#carCosmeticsList()' , async ( ) => {
86
+ const response = await client . carCosmeticsList ( ) ;
87
+
88
+ expect ( response . status ) . toBe ( 200 ) ;
89
+ expect ( response . data ) . toBeDefined ( ) ;
90
+ } ) ;
91
+
92
+ it ( 'Runs Client#legoCosmeticsList()' , async ( ) => {
93
+ const response = await client . legoCosmeticsList ( ) ;
94
+
95
+ expect ( response . status ) . toBe ( 200 ) ;
96
+ expect ( response . data ) . toBeDefined ( ) ;
97
+ } ) ;
98
+
99
+ it ( 'Runs Client#legoKitCosmeticsList()' , async ( ) => {
100
+ const response = await client . legoKitCosmeticsList ( ) ;
101
+
102
+ expect ( response . status ) . toBe ( 200 ) ;
103
+ expect ( response . data ) . toBeDefined ( ) ;
104
+ } ) ;
105
+
106
+ it ( 'Runs Client#beanCosmeticsList()' , async ( ) => {
107
+ const response = await client . beanCosmeticsList ( ) ;
108
+
109
+ expect ( response . status ) . toBe ( 200 ) ;
110
+ expect ( response . data ) . toBeDefined ( ) ;
111
+ } ) ;
112
+
113
+ it ( 'Runs Client#brCosmeticByID()' , async ( ) => {
114
+ const response = await client . brCosmeticByID ( 'CID_022_Athena_Commando_F' ) ;
115
+
116
+ expect ( response . status ) . toBe ( 200 ) ;
117
+ expect ( response . data ) . toBeDefined ( ) ;
118
+ } ) ;
119
+
120
+ it ( 'Runs Client#brCosmeticSearch()' , async ( ) => {
121
+ const response = await client . brCosmeticSearch ( { name : 'Recon' , matchMethod : 'starts' } ) ;
122
+
123
+ expect ( response . status ) . toBe ( 200 ) ;
124
+ expect ( response . data ) . toBeDefined ( ) ;
125
+ } ) ;
126
+
127
+ it ( 'Runs Client#brCosmeticsSearch()' , async ( ) => {
128
+ const response = await client . brCosmeticsSearch ( { name : 'Recon' , matchMethod : 'starts' } ) ;
129
+
130
+ expect ( response . status ) . toBe ( 200 ) ;
131
+ expect ( response . data ) . toBeDefined ( ) ;
132
+ } ) ;
133
+
134
+ it ( 'Runs Client#brCosmeticsSearchByIDs()' , async ( ) => {
135
+ const response = await client . brCosmeticsSearchByIDs ( { id : [ 'CID_022_Athena_Commando_F' , 'CID_242_Athena_Commando_F_Bullseye' ] } ) ;
87
136
88
137
expect ( response . status ) . toBe ( 200 ) ;
89
138
expect ( response . data ) . toBeDefined ( ) ;
@@ -118,21 +167,14 @@ describe('Client Methods (Without API Key)', () => {
118
167
} ) ;
119
168
120
169
it ( 'Runs Client#playlistById()' , async ( ) => {
121
- const response = await client . playlistById ( { id : 'Playlist_DefaultSolo' } ) ;
122
-
123
- expect ( response . status ) . toBe ( 200 ) ;
124
- expect ( response . data ) . toBeDefined ( ) ;
125
- } ) ;
126
-
127
- it ( 'Runs Client#brShop()' , async ( ) => {
128
- const response = await client . brShop ( ) ;
170
+ const response = await client . playlistByID ( 'Playlist_DefaultSolo' ) ;
129
171
130
172
expect ( response . status ) . toBe ( 200 ) ;
131
173
expect ( response . data ) . toBeDefined ( ) ;
132
174
} ) ;
133
175
134
- it ( 'Runs Client#brShopCombined ()' , async ( ) => {
135
- const response = await client . brShopCombined ( ) ;
176
+ it ( 'Runs Client#shop ()' , async ( ) => {
177
+ const response = await client . shop ( ) ;
136
178
137
179
expect ( response . status ) . toBe ( 200 ) ;
138
180
expect ( response . data ) . toBeDefined ( ) ;
0 commit comments