diff --git a/__tests__/html/focusManagement.disableHeroCard.obsolete.js b/__tests__/html/focusManagement.disableHeroCard.obsolete.js
deleted file mode 100644
index ff0a0e1726..0000000000
--- a/__tests__/html/focusManagement.disableHeroCard.obsolete.js
+++ /dev/null
@@ -1,6 +0,0 @@
-/** @jest-environment ./packages/test/harness/src/host/jest/WebDriverEnvironment.js */
-
-describe('focus management', () => {
- test('focus should not move after hero card is disable after obsolete', () =>
- runHTML('focusManagement.disableHeroCard.obsolete.html'));
-});
diff --git a/__tests__/html/focusManagement.disableHeroCard.obsolete.html b/__tests__/html2/focusManagement/disableHeroCard.obsolete.html
similarity index 96%
rename from __tests__/html/focusManagement.disableHeroCard.obsolete.html
rename to __tests__/html2/focusManagement/disableHeroCard.obsolete.html
index 9f8ec98ede..8710fa4800 100644
--- a/__tests__/html/focusManagement.disableHeroCard.obsolete.html
+++ b/__tests__/html2/focusManagement/disableHeroCard.obsolete.html
@@ -64,7 +64,7 @@
firstButton.focus();
// THEN: It should show a focus indicator around the first button.
- await host.snapshot();
+ await host.snapshot('local');
// WHEN: The first button is clicked.
await firstButton.click();
@@ -79,7 +79,7 @@
expect(secondButton.getAttribute('aria-disabled')).toBe('true');
// THEN: The second button should be grayed out.
- await host.snapshot();
+ await host.snapshot('local');
// THEN: The first button should still be kept as focused.
expect(document.activeElement).toBe(firstButton);
@@ -94,7 +94,7 @@
expect(pageElements.focusedActivity()).toBe(pageElements.activities()[1]);
// THEN: It should focus on the transcript with the first hero card selected.
- await host.snapshot();
+ await host.snapshot('local');
// WHEN: ENTER key is pressed. It should not focus in the activity because the activity no longer contains any interactive elements.
// All buttons in the activity is now disabled.
@@ -107,7 +107,7 @@
expect(pageElements.focusedActivity()).toBe(pageElements.activities()[1]);
// THEN: It should focus on the transcript with the first hero card selected.
- await host.snapshot();
+ await host.snapshot('local');
// WHEN: Using arrow keys to move to the second hero card, then focus and press on the first button.
await host.sendKeys('ARROW_DOWN', 'ARROW_DOWN', 'ENTER', 'ENTER');
@@ -119,7 +119,7 @@
await pageConditions.scrollToBottomCompleted();
// THEN: It should submit the hero card and scroll to the bottom.
- await host.snapshot();
+ await host.snapshot('local');
});