Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
174 changes: 36 additions & 138 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
"@emotion/styled": "^11.13.0",
"@minoru/react-dnd-treeview": "^3.4.4",
"@mui/icons-material": "^6.1.6",
"@mui/lab": "^5.0.0-alpha.173",
"@mui/lab": "^6.0.0-beta.13",
"@mui/material": "^6.1.6",
"@mui/system": "^6.1.4",
"@mui/x-data-grid": "^7.22.1",
Expand Down
2 changes: 1 addition & 1 deletion src/__tests__/FlukaConverter.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -178,7 +178,7 @@ describe('Fluka Converter', () => {
//wait until the "generate from editor" button and click it (it takes some time for the button to change from "initializing")
//xpath is used as again the id changes every time
const generateButton = await driver.findElement(
By.xpath("//button[contains(text(),'Generate from Editor')]")
By.xpath("//span[contains(text(),'Generate from Editor')]")
);
await driver.wait(until.elementIsEnabled(generateButton), 15_000);
await generateButton.click();
Expand Down
2 changes: 1 addition & 1 deletion src/__tests__/ShieldhitConverter.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -185,7 +185,7 @@ describe('ShieldhitConverter', () => {
//wait until the "generate from editor" button and click it (it takes some time for the button to change from "initializing")
//xpath is used as again the id changes every time
const generateButton = await driver.findElement(
By.xpath("//button[contains(text(),'Generate from Editor')]")
By.xpath("//span[contains(text(),'Generate from Editor')]")
);
await driver.wait(until.elementIsEnabled(generateButton), 15_000);
await generateButton.click();
Expand Down
2 changes: 1 addition & 1 deletion src/__tests__/TopasConverter.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -176,7 +176,7 @@ describe('TopasConverter', () => {
//wait until the "generate from editor" button and click it (it takes some time for the button to change from "initializing")
//xpath is used as again the id changes every time
const generateButton = await driver.findElement(
By.xpath("//button[contains(text(),'Generate from Editor')]")
By.xpath("//span[contains(text(),'Generate from Editor')]")
);
await driver.wait(until.elementIsEnabled(generateButton), 15_000);
await generateButton.click();
Expand Down