style: apply prettier line-wrap to normalizeBackendUrls.test.ts

Single-argument object literal exceeded print width after the comment trim;
prettier expanded it to multi-line form.
This commit is contained in:
Joe Li
2026-05-07 23:36:44 -07:00
parent 34f1b2712e
commit 678d5f3d47

View File

@@ -73,7 +73,9 @@ describe('normalizeBackendUrls', () => {
describe('normalizeBackendUrlString', () => {
test('strips application root from a router-relative path', () => {
expect(
normalizeBackendUrlString('/superset/sqllab', { applicationRoot: PREFIX }),
normalizeBackendUrlString('/superset/sqllab', {
applicationRoot: PREFIX,
}),
).toBe('/sqllab');
});