Skip to content

Commit cc61727

Browse files
committed
add new pages
1 parent 0bc7777 commit cc61727

1 file changed

Lines changed: 3 additions & 0 deletions

File tree

src/fixtures/fixtures.ts

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,7 @@ import PersonsListPage from '@/pages/people/PersonsListPage';
3131
import CreateProductPage from '@/pages/product/CreateProductPage';
3232
import ProductShowPage from '@/pages/product/productShow/ProductShowPage';
3333
import CreatePutawayPage from '@/pages/putaway/CreatePutawayPage';
34+
import PutawayListPage from '@/pages/putaway/list/PutawayListPage';
3435
import PutawayDetailsPage from '@/pages/putaway/putawayDetails/PutawayDetailsPage';
3536
import ReceivingPage from '@/pages/receiving/ReceivingPage';
3637
import OldViewShipmentPage from '@/pages/stockMovementShow/OldViewShipmentPage';
@@ -71,6 +72,7 @@ type Fixtures = {
7172
putawayDetailsPage: PutawayDetailsPage;
7273
transactionListPage: TransactionListPage;
7374
oldViewShipmentPage: OldViewShipmentPage;
75+
putawayListPage: PutawayListPage;
7476
// COMPONENTS
7577
navbar: Navbar;
7678
locationChooser: LocationChooser;
@@ -145,6 +147,7 @@ export const test = baseTest.extend<Fixtures>({
145147
use(new TransactionListPage(page)),
146148
oldViewShipmentPage: async ({ page }, use) =>
147149
use(new OldViewShipmentPage(page)),
150+
putawayListPage: async ({ page }, use) => use(new PutawayListPage(page)),
148151
// COMPONENTS
149152
navbar: async ({ page }, use) => use(new Navbar(page)),
150153
locationChooser: async ({ page }, use) => use(new LocationChooser(page)),

0 commit comments

Comments
 (0)