mirror of
https://github.com/grafana/grafana.git
synced 2025-02-25 18:55:37 -06:00
Minor test update
This commit is contained in:
parent
cba7892d8e
commit
2eccdb4770
@ -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();
|
||||
}
|
||||
);
|
||||
});
|
||||
|
Loading…
Reference in New Issue
Block a user