Skip to content
Snippets Groups Projects

Migrate to vitest

Merged Jan Loewe requested to merge migrate-to-vitest into master
Files
91
/**
* @jest-environment ./tests/XMLEnvironment.ts
* @xml ./tests/resources/GP_Temperature_Simplified.xml
* @vitest-environment-options { "xmlPath": "./tests/resources/GP_Temperature_Simplified.xml" }
*/
import { select, toTextArr, toTextContentArr } from "../../util";
@@ -26,7 +25,7 @@ describe("GP_DCC_Temperature_Simplified: CalibrationLaboratoryType", () => {
let dcc: DCCDocument, calibrationLaboratory: CalibrationLaboratoryType, dom;
beforeEach(() => {
({ dcc, dom } = xmlEnv.recreateEnv());
({ dcc, dom } = recreateEnv());
calibrationLaboratory = dcc.digitalCalibrationCertificate.administrativeData.calibrationLaboratory;
});
Loading