fix ci
This commit is contained in:
@@ -3,4 +3,4 @@
|
||||
'@backstage/plugin-auth-backend': patch
|
||||
---
|
||||
|
||||
bugfix: issue 3223 - detect mismatching origin and indicate it in the message at auth failure
|
||||
bug fix: issue 3223 - detect mismatching origin and indicate it in the message at auth failure
|
||||
|
||||
@@ -82,10 +82,10 @@ describe('oauth helpers', () => {
|
||||
});
|
||||
|
||||
it('should call postMessage twice but only one of them with target *', () => {
|
||||
let responseBody: String;
|
||||
let responseBody = '';
|
||||
|
||||
const mockResponse = ({
|
||||
end: jest.fn(function (body) {
|
||||
end: jest.fn(body => {
|
||||
responseBody = body;
|
||||
return this;
|
||||
}),
|
||||
|
||||
Reference in New Issue
Block a user