You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: packages/selenium-ide/src/neo/IO/filesystem.js
+5-3Lines changed: 5 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -140,17 +140,19 @@ export function loadProject(project, file) {
140
140
});
141
141
}elseif(type===FileTypes.TestCase){
142
142
const{ test, baseUrl }=migrateTestCase(contents);
143
-
if(project.url&&project.url!==baseUrl){
143
+
if(!project.urls.includes(baseUrl)){
144
144
ModalState.showAlert({
145
145
title: "Migrate test case",
146
146
description: `The test case you're trying to migrate has a different base URL (${baseUrl}) than the project's one. \nIn order to migrate the test case URLs will be made absolute.`,
0 commit comments