@@ -28,7 +28,7 @@ test.beforeEach(({ page }) => {
28
28
deleteAddressDialog = new DeleteAddressDialog ( page ) ;
29
29
} ) ;
30
30
31
- test ( "TC: SALEOR_199 Create customer @ e2e @ customer" , async ( ) => {
31
+ test ( "TC: SALEOR_199 Create customer # e2e # customer" , async ( ) => {
32
32
const firstName = faker . name . firstName ( ) ;
33
33
const lastName = faker . name . lastName ( ) ;
34
34
const note = faker . lorem . sentence ( ) ;
@@ -56,7 +56,7 @@ test("TC: SALEOR_199 Create customer @e2e @customer", async () => {
56
56
await expect ( customersPage . customerEmailInput ) . toHaveValue ( email . toLowerCase ( ) ) ;
57
57
} ) ;
58
58
59
- test ( "TC: SALEOR_200 As an admin I should not be able to create customer with duplicated email @ e2e @ customer" , async ( ) => {
59
+ test ( "TC: SALEOR_200 As an admin I should not be able to create customer with duplicated email # e2e # customer" , async ( ) => {
60
60
const firstName = faker . name . firstName ( ) ;
61
61
const lastName = faker . name . lastName ( ) ;
62
62
const note = faker . lorem . sentence ( ) ;
@@ -78,7 +78,7 @@ test("TC: SALEOR_200 As an admin I should not be able to create customer with du
78
78
await customersPage . expectErrorBannerMessage ( "User with this Email already exists." ) ;
79
79
} ) ;
80
80
81
- test ( "TC: SALEOR_201 Update customer account info @ e2e @ customer" , async ( ) => {
81
+ test ( "TC: SALEOR_201 Update customer account info # e2e # customer" , async ( ) => {
82
82
const firstName = faker . name . firstName ( ) ;
83
83
const lastName = faker . name . lastName ( ) ;
84
84
const email = faker . internet . email ( ) ;
@@ -97,23 +97,23 @@ test("TC: SALEOR_201 Update customer account info @e2e @customer", async () => {
97
97
await expect ( customersPage . customerEmailInput ) . toHaveValue ( email . toLowerCase ( ) ) ;
98
98
} ) ;
99
99
100
- test ( "TC: SALEOR_202 Deactivate a customer @ e2e @ customer" , async ( ) => {
100
+ test ( "TC: SALEOR_202 Deactivate a customer # e2e # customer" , async ( ) => {
101
101
await customersPage . gotoCustomerDetailsPage ( CUSTOMERS . customerToBeDeactivated . id ) ;
102
102
await customersPage . customerActiveCheckbox . click ( ) ;
103
103
await customersPage . saveCustomer ( ) ;
104
104
await customersPage . expectSuccessBanner ( ) ;
105
105
await expect ( customersPage . customerActiveCheckbox ) . not . toBeChecked ( ) ;
106
106
} ) ;
107
107
108
- test ( "TC: SALEOR_203 Activate a customer @ e2e @ customer" , async ( ) => {
108
+ test ( "TC: SALEOR_203 Activate a customer # e2e # customer" , async ( ) => {
109
109
await customersPage . gotoCustomerDetailsPage ( CUSTOMERS . customerToBeActivated . id ) ;
110
110
await customersPage . customerActiveCheckbox . click ( ) ;
111
111
await customersPage . saveCustomer ( ) ;
112
112
await customersPage . expectSuccessBanner ( ) ;
113
113
await expect ( customersPage . customerActiveCheckbox ) . toBeChecked ( ) ;
114
114
} ) ;
115
115
116
- test ( "TC: SALEOR_204 Delete customer from the details page @ e2e @ customer" , async ( ) => {
116
+ test ( "TC: SALEOR_204 Delete customer from the details page # e2e # customer" , async ( ) => {
117
117
await customersPage . gotoCustomerDetailsPage ( CUSTOMERS . deleteCustomer . id ) ;
118
118
await customersPage . deleteCustomer ( ) ;
119
119
await customersPage . deleteDialog . clickDeleteButton ( ) ;
@@ -123,7 +123,7 @@ test("TC: SALEOR_204 Delete customer from the details page @e2e @customer", asyn
123
123
await expect ( customersPage . emptyDataGridListView ) . toBeVisible ( ) ;
124
124
} ) ;
125
125
126
- test ( "TC: SALEOR_205 Bulk delete customers @ e2e @ customer" , async ( ) => {
126
+ test ( "TC: SALEOR_205 Bulk delete customers # e2e # customer" , async ( ) => {
127
127
const customersToBeBulkDeleted = CUSTOMERS . customersToBeBulkDeleted . names ;
128
128
129
129
await customersPage . goToCustomersListView ( ) ;
@@ -139,7 +139,7 @@ test("TC: SALEOR_205 Bulk delete customers @e2e @customer", async () => {
139
139
await expect ( customersPage . emptyDataGridListView ) . toBeVisible ( ) ;
140
140
} ) ;
141
141
142
- test ( "TC: SALEOR_206 As an admin I want to add address to the customer and set it as default shipping @ e2e @ customer" , async ( ) => {
142
+ test ( "TC: SALEOR_206 As an admin I want to add address to the customer and set it as default shipping # e2e # customer" , async ( ) => {
143
143
await customersPage . gotoCustomerDetailsPage ( CUSTOMERS . editCustomer . id ) ;
144
144
await addressesListPage . clickManageAddresses ( ) ;
145
145
await addressesListPage . clickAddAddressButton ( ) ;
@@ -167,7 +167,7 @@ test("TC: SALEOR_206 As an admin I want to add address to the customer and set i
167
167
) ;
168
168
} ) ;
169
169
170
- test ( "TC: SALEOR_209 As an admin I want to update customer's address and set it as default billing @ e2e @ customer" , async ( ) => {
170
+ test ( "TC: SALEOR_209 As an admin I want to update customer's address and set it as default billing # e2e # customer" , async ( ) => {
171
171
await customersPage . gotoCustomerDetailsPage ( CUSTOMERS . editCustomer . id ) ;
172
172
await addressesListPage . clickManageAddresses ( ) ;
173
173
await addressesListPage . clickShowMoreMenu ( CUSTOMERS . editCustomer . initialShippingAddress . lastName ) ;
@@ -198,7 +198,7 @@ test("TC: SALEOR_209 As an admin I want to update customer's address and set it
198
198
) ;
199
199
} ) ;
200
200
201
- test ( "TC: SALEOR_210 Delete customer's address @ e2e @ customer" , async ( ) => {
201
+ test ( "TC: SALEOR_210 Delete customer's address # e2e # customer" , async ( ) => {
202
202
await customersPage . gotoCustomerDetailsPage ( CUSTOMERS . editCustomer . id ) ;
203
203
await addressesListPage . clickManageAddresses ( ) ;
204
204
await addressesListPage . clickShowMoreMenu ( CUSTOMERS . editCustomer . initialBillingAddress . lastName ) ;
@@ -211,7 +211,7 @@ test("TC: SALEOR_210 Delete customer's address @e2e @customer", async () => {
211
211
) . not . toBeVisible ( ) ;
212
212
} ) ;
213
213
214
- test ( "TC: SALEOR_207 Issue a new gift card for the customer @ e2e @ customer" , async ( ) => {
214
+ test ( "TC: SALEOR_207 Issue a new gift card for the customer # e2e # customer" , async ( ) => {
215
215
const amount = faker . datatype . number ( 1000 ) . toPrecision ( 2 ) . toString ( ) ;
216
216
217
217
await customersPage . gotoCustomerDetailsPage ( CUSTOMERS . editCustomer . id ) ;
0 commit comments