/*
* @title Collapse Go Tests
* @description Github の /files ページで Go のテストファイルを折りたたむ
* @include http://*
* @license MIT License
*/
document.querySelectorAll('.file-header').forEach((header) => {
name = header.querySelector('.file-info a').innerText;
if (!/_test.go$/.test(name)) return;
button = header.querySelector('button.js-details-target');
button.click();
});