Minor test update
This commit is contained in:
@@ -211,7 +211,6 @@ export class LinkSrv implements LinkService {
|
||||
value: variablesQuery,
|
||||
},
|
||||
});
|
||||
|
||||
info.href = getConfig().disableSanitizeHtml ? info.href : sanitizeUrl(info.href);
|
||||
return info;
|
||||
};
|
||||
|
||||
@@ -140,6 +140,12 @@ describe('linkSrv', () => {
|
||||
});
|
||||
|
||||
describe('sanitization', () => {
|
||||
let restoreConfig: () => void;
|
||||
|
||||
afterEach(() => {
|
||||
restoreConfig();
|
||||
});
|
||||
|
||||
const url = "javascript:alert('broken!);";
|
||||
it.each`
|
||||
disableSanitizeHtml | expected
|
||||
@@ -148,7 +154,7 @@ describe('linkSrv', () => {
|
||||
`(
|
||||
"when disable disableSanitizeHtml set to '$disableSanitizeHtml' then result should be '$expected'",
|
||||
({ disableSanitizeHtml, expected }) => {
|
||||
const restoreConfig = mockConfig({
|
||||
restoreConfig = mockConfig({
|
||||
disableSanitizeHtml,
|
||||
});
|
||||
|
||||
@@ -166,9 +172,7 @@ describe('linkSrv', () => {
|
||||
{}
|
||||
).href;
|
||||
|
||||
// console.log(link);
|
||||
expect(link).toBe(expected);
|
||||
restoreConfig();
|
||||
}
|
||||
);
|
||||
});
|
||||
|
||||
Reference in New Issue
Block a user