BAS (Business Application Studio) is an integrated development environment for developing SAP Cloud Platform applications. To test an app in BAS without UI5 tooling, you can follow these steps:
Open the BAS terminal and navigate to the root directory of your project.
Build your project using the following command: Copy code npm run build This will generate the build files for your app.
Start a local server to serve your app using the following command: sqlCopy code npm start This will start a local server at http://localhost:8080 where you can access your app.
Open a web browser and navigate to http://localhost:8080.
Test your app by interacting with it in the web browser.
By following these steps, you can test your app in BAS without the need for UI5 tooling.