Can I do a wildcard (*) search on github.com?

github, search, wildcard

Solution

The easiest way to find a file in a repository is to use the file finder. You can activate it at any time when you are in repository view by pressing t. See this screenshot from the official annoucement:

The file finder will perform some fuzzy matching using the characters you input into the "search box".

Problem

I want to search a repository for any files that end in `*Test.java*` but if I search for `*Test.java*` I just get files that contain that exact string. I can't find any information anywhere that suggests this is possible. Is this just due to limitations of indexing such an enormous amount of data? I'd like to find a way to search a repo for all classes ending in `Test`.

Original source