Skip to content

Commit b04a2f3

Browse files
committed
update envs and cypress test
1 parent c40da58 commit b04a2f3

File tree

4 files changed

+7
-5
lines changed

4 files changed

+7
-5
lines changed

ui/.env.development

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
ASSET_PREFIX=https://review.neuralmagic.com/guidellm-ui/dev/_next
2-
BASE_PATH=/guidellm-ui/dev
1+
ASSET_PREFIX=https://neuralmagic.github.io/guidellm/dev
2+
BASE_PATH=/dev
33
NEXT_PUBLIC_FEATURES={"blocks":{"workloadDetails":false,"costSection":false}}
44
NEXT_PUBLIC_USE_MOCK_API=true

ui/.env.production

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1,2 @@
1-
ASSET_PREFIX=https://guidellm.neuralmagic.com
1+
ASSET_PREFIX=https://neuralmagic.github.io/guidellm/prod
2+
BASE_PATH=/prod

ui/.env.staging

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1,2 @@
1-
ASSET_PREFIX=https://staging.guidellm.neuralmagic.com
1+
ASSET_PREFIX=https://neuralmagic.github.io/guidellm/staging
2+
BASE_PATH=/staging

ui/cypress/e2e/homepage.cy.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
describe('Check if text exists on the page', () => {
22
it('should find the text on the page', () => {
33
cy.visit('http://localhost:3000'); // Replace with your dev server URL
4-
cy.contains('nm-vllm LLM Guidance').should('exist'); // Replace with the text you're checking for
4+
cy.contains('Guidellm').should('exist'); // Replace with the text you're checking for
55
});
66
});

0 commit comments

Comments
 (0)