Skip to content
Snippets Groups Projects
Verified Commit f95e3831 authored by João Magalhães's avatar João Magalhães :rocket:
Browse files

chore: restored test section

parent 377d21b0
No related branches found
No related tags found
No related merge requests found
Pipeline #3404 failed
......@@ -26,7 +26,8 @@ import {
DebugSettings,
HelpFaqs,
HelpKeyboard,
SerialSection
SerialSection,
TestSection
} from "../react";
import {
......@@ -397,9 +398,8 @@ export class GameboyEmulator extends EmulatorBase implements Emulator {
// in case a remote ROM loading operation has been
// requested then loads it from the remote origin
if (loadRom) {
({ name: romName, data: romData } = await GameboyEmulator.fetchRom(
romPath
));
({ name: romName, data: romData } =
await GameboyEmulator.fetchRom(romPath));
} else if (romName === null || romData === null) {
[romName, romData] = [this.romName, this.romData];
}
......@@ -547,6 +547,10 @@ export class GameboyEmulator extends EmulatorBase implements Emulator {
name: "Serial",
icon: require("../res/serial.svg"),
node: SerialSection({ emulator: this })
},
{
name: "Test",
node: TestSection({})
}
];
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment