Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

GH-1477 Wildcard/Regex Whitelisting #501

Merged
merged 8 commits into from Mar 3, 2020

Remove bad unit test

  • Loading branch information
benstrumeyer committed Feb 27, 2020
commit 3b8139038c9621d0beba85515352e32855d5c108
@@ -143,11 +143,5 @@ describe('app/panel/components/Settings/', () => {
when(fn).calledWith(input);
returnValue = wrapper.instance().isValidUrlorWildcard(input);
expect(returnValue).toBe(false);

input = '.*.*.*.*.*.*.*.*.*.*.*';
fn = jest.spyOn(wrapper.instance(), 'isValidUrlorWildcard');
when(fn).calledWith(input);
returnValue = wrapper.instance().isValidUrlorWildcard(input);
expect(returnValue).toBe(false);
});
});
ProTip! Use n and p to navigate between commits in a pull request.