Skip to content

Commit

Permalink
Fix IOOptionsDialog component tests
Browse files Browse the repository at this point in the history
  • Loading branch information
9inpachi committed Aug 23, 2023
1 parent 3a6a12b commit 65fdee0
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ describe('IoOptionsDialogComponent', () => {

it('should handle JiveXML event data input', async () => {
await fetch(
'https://github.com/HSF/phoenix/blob/master/packages/phoenix-ng/projects/phoenix-app/src/assets/files/JiveXML/JiveXML_336567_2327102923.xml'
'https://raw.githubusercontent.com/HSF/phoenix/main/packages/phoenix-ng/projects/phoenix-app/src/assets/files/JiveXML/JiveXML_336567_2327102923.xml'
)
.then((res) => res.text())
.then((res) => {
Expand Down Expand Up @@ -157,7 +157,7 @@ describe('IoOptionsDialogComponent', () => {
const zip = new JSZip();
zip.file('test_data.json', '{ "event": null }');
const jivexmlData = await fetch(
'https://github.com/HSF/phoenix/blob/master/packages/phoenix-ng/projects/phoenix-app/src/assets/files/JiveXML/JiveXML_336567_2327102923.xml'
'https://raw.githubusercontent.com/HSF/phoenix/main/packages/phoenix-ng/projects/phoenix-app/src/assets/files/JiveXML/JiveXML_336567_2327102923.xml'
);
zip.file('test_data.xml', jivexmlData.text());
const zipBlob = await zip.generateAsync({ type: 'blob' });
Expand Down

0 comments on commit 65fdee0

Please sign in to comment.