Finished avionics test engineering internship
Some checks failed
Build and Test - Staging / test (pull_request) Successful in 4m49s
Build and Test - Staging / deploy_staging (pull_request) Has been cancelled
Build and Test - Staging / build_and_push (pull_request) Has been cancelled

This commit is contained in:
2025-12-10 14:28:59 -08:00
parent e17d28914e
commit c320190a8d
4 changed files with 172 additions and 54 deletions

View File

@@ -7,10 +7,13 @@ const keys: { [key: string]: string } = {
ADCP: "Acoustic doppler current profiler",
COTS: "Consumer off-the-shelf",
CTD: "Conductivity, temperature, and depth sensor",
DUTs: "Devices under test",
GUI: "Graphical user interface",
NUC: "A small and low-power computer made by Intel",
PCBs: "Printed circuit boards",
TDD: "Test driven development",
UPS: "Uninterruptible power supply",
VISA: "Virtual instrument software architecture",
};
const key: string | undefined = Astro.props.key;
@@ -21,6 +24,12 @@ if (key && keys.hasOwnProperty(key)) {
word = key;
definition = keys[key];
}
if (!word || !definition) {
throw new Error(
`Popover definition is missing! Inputs were\nkey: ${key}\nword: ${word}\ndefinition: ${definition}`,
);
}
---
<>