* Add combined build * Link script location update * Security and validation fixes * Allow specifying target path in PR description * fix: Version match * Fix build detection issue * fix: Playwright deploy * Separate out the branch merge guard * Update docs and link info * test: Update the layout change to wait for network idle * Move audit late so the rest of the build can be worked on * Add text with network check to ensure we see this change is updated * Attempt to fix the mpr loading on ohif-downstream * PR review comments * Update docs * Update to CS3D 4.20.0 * PR comments * Add log on ohif-integration builds * Update build test * Removed unused space to kickoff build
31 lines
820 B
TypeScript
31 lines
820 B
TypeScript
import {
|
|
attemptAction,
|
|
checkForScreenshot,
|
|
reduce3DViewportSize,
|
|
screenShotPaths,
|
|
test,
|
|
visitStudy,
|
|
} from './utils';
|
|
|
|
test.beforeEach(async ({ page }) => {
|
|
const studyInstanceUID = '1.3.6.1.4.1.14519.5.2.1.1706.8374.643249677828306008300337414785';
|
|
const mode = 'viewer';
|
|
await visitStudy(page, studyInstanceUID, mode, 2000);
|
|
});
|
|
|
|
test.describe('3D four up Test', async () => {
|
|
test('should render 3D four up correctly.', async ({ page, mainToolbarPageObject }) => {
|
|
await mainToolbarPageObject.layoutSelection.threeDFourUp.click();
|
|
|
|
await attemptAction(() => reduce3DViewportSize(page), 10, 100);
|
|
|
|
await mainToolbarPageObject.waitForVolumeLoad();
|
|
|
|
await checkForScreenshot(
|
|
page,
|
|
page,
|
|
screenShotPaths.threeDFourUp.threeDFourUpDisplayedCorrectly
|
|
);
|
|
});
|
|
});
|