File size: 933 Bytes
1e92f2d |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 |
// Jest Snapshot v1, https://goo.gl/fbAQLP
exports[`parseAuthorizationQuery should return transformed data on valid input 1`] = `
Object {
"allowSiteConnection": "1",
"alreadyAuthorized": false,
"authApproved": false,
"blogname": "Just Another WordPress.com Site",
"clientId": 12345,
"closeWindowAfterAuthorize": false,
"closeWindowAfterLogin": false,
"from": "[unknown]",
"homeUrl": "https://yourjetpack.blog",
"installedExtSuccess": "1",
"isPopup": false,
"jpVersion": null,
"nonce": "foobar",
"plugin_name": null,
"redirectAfterAuth": null,
"redirectUri": "https://yourjetpack.blog/wp-admin/admin.php",
"scope": "administrator:34579bf2a3185a47d1b31aab30125d",
"secret": "640fdbd69f96a8ca9e61",
"site": "https://yourjetpack.blog",
"siteIcon": null,
"siteUrl": "https://yourjetpack.blog",
"state": "1",
"userEmail": null,
"woodna_help_url": null,
"woodna_service_name": null,
}
`;
|