@sap_oss/wdio-qmate-service
Version:
[](https://api.reuse.software/info/github.com/SAP/wdio-qmate-service)[](http
12 lines (9 loc) • 406 B
JavaScript
// Test that if data is imported again in another test file, the data is not decrypted again.
describe("data - getSecureData - external import", function () {
const data = util.data.getSecureData("getSecureData");
it("Verification", function () {
const dataExp = "super-duper-sensitive-pw";
const dataAct = data.session.password;
common.assertion.expectEqual(dataAct, dataExp);
});
});