d30071b756
Tasks completed: - Task 11: Create CityAutocomplete React component with debounced search - Task 12: Implement OnlineBoard page with search and details components - Task 13: Create BackstopJS baseline configuration for Angular - Task 14: Create BackstopJS test configuration for React - Task 15: Create full-validation.sh script for e2e and visual regression testing All components built and tested successfully.
8 lines
204 B
JavaScript
8 lines
204 B
JavaScript
module.exports = async (browser, scenario) => {
|
|
console.log('Starting scenario: ' + scenario.label)
|
|
// Clear localStorage
|
|
await browser.evaluateOnNewDocument(() => {
|
|
localStorage.clear()
|
|
})
|
|
}
|