{"id":28627398,"url":"https://github.com/heyitsgilbert/pesterexplorer","last_synced_at":"2025-06-12T09:33:20.914Z","repository":{"id":295318300,"uuid":"989727947","full_name":"HeyItsGilbert/PesterExplorer","owner":"HeyItsGilbert","description":"A TUI to explore Pester results.","archived":false,"fork":false,"pushed_at":"2025-05-31T19:52:57.000Z","size":2358,"stargazers_count":15,"open_issues_count":1,"forks_count":1,"subscribers_count":0,"default_branch":"main","last_synced_at":"2025-06-01T02:37:34.742Z","etag":null,"topics":["pester","powershell","powershell-module","spectre-console","tdd"],"latest_commit_sha":null,"homepage":"https://heyitsgilbert.github.io/PesterExplorer/","language":"PowerShell","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/HeyItsGilbert.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null},"funding":{"github":"HeyItsGilbert"}},"created_at":"2025-05-24T17:45:28.000Z","updated_at":"2025-05-31T19:52:23.000Z","dependencies_parsed_at":"2025-05-26T12:02:49.868Z","dependency_job_id":null,"html_url":"https://github.com/HeyItsGilbert/PesterExplorer","commit_stats":null,"previous_names":["heyitsgilbert/pesterexplorer"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/HeyItsGilbert/PesterExplorer","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/HeyItsGilbert%2FPesterExplorer","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/HeyItsGilbert%2FPesterExplorer/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/HeyItsGilbert%2FPesterExplorer/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/HeyItsGilbert%2FPesterExplorer/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/HeyItsGilbert","download_url":"https://codeload.github.com/HeyItsGilbert/PesterExplorer/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/HeyItsGilbert%2FPesterExplorer/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":259438615,"owners_count":22857554,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["pester","powershell","powershell-module","spectre-console","tdd"],"created_at":"2025-06-12T09:31:01.915Z","updated_at":"2025-06-12T09:33:20.893Z","avatar_url":"https://github.com/HeyItsGilbert.png","language":"PowerShell","funding_links":["https://github.com/sponsors/HeyItsGilbert"],"categories":[],"sub_categories":[],"readme":"\u003ccenter\u003e\u003cimg src=\"https://raw.githubusercontent.com/HeyItsGilbert/PesterExplorer/main/images/icon.png\" /\u003e\u003c/center\u003e\r\n\r\n# PesterExplorer\r\n\r\nA TUI to explore Pester results.\r\n\r\n[![PowerShell Gallery](https://img.shields.io/powershellgallery/dt/PesterExplorer)](https://www.powershellgallery.com/packages/PesterExplorer/)\r\n[![PowerShell Gallery Version](https://img.shields.io/powershellgallery/v/PesterExplorer)](https://www.powershellgallery.com/packages/PesterExplorer/)\r\n[![GitHub Workflow Status](https://img.shields.io/github/actions/workflow/status/HeyItsGilbert/PesterExplorer/Publish.yaml)](https://www.powershellgallery.com/packages/PesterExplorer/)\r\n[![PowerShell Gallery](https://img.shields.io/powershellgallery/p/PesterExplorer)](https://www.powershellgallery.com/packages/PesterExplorer/)\r\n\r\n## Overview\r\n\r\nPester does a wonderful job printing out tests results as they're running. The\r\ndifficulty can be where you're looking at a large number of results.\r\n\r\n## Installation\r\n\r\n\u003e [!IMPORTANT]\r\n\u003e This module is for PowerShell 7. This won't work in Windows PowerShell.\r\n\r\n```pwsh\r\nInstall-Module PesterExplorer -Scope CurrentUser\r\n```\r\n\r\nInstalling this module will install it's dependencies which are Pester and\r\nPwshSpectreConsole.\r\n\r\n## Examples\r\n\r\nTo explore your result object you simply need to run `Show-PesterResult`\r\n\r\n```pwsh\r\n# Run Pester and make sure to PassThru the object\r\n$pester = Invoke-Pester .\\tests\\ -PassThru\r\n# Now run the TUI\r\nShow-PesterResult $p\r\n```\r\n\r\n\u003ccenter\u003e\u003cimg src=\"https://raw.githubusercontent.com/HeyItsGilbert/PesterExplorer/main/images/Show-PesterResult.png\" /\u003e\u003c/center\u003e\r\n\r\nYou can also get a tree view of your pester results with\r\n`Show-PesterResultTree`.\r\n\r\n```pwsh\r\n# Run Pester and make sure to PassThru the object\r\n$pester = Invoke-Pester .\\tests\\ -PassThru\r\n# Now get that in a Tree view\r\nShow-PesterResultTree $p\r\n```\r\n\r\n\u003ccenter\u003e\u003cimg src=\"https://raw.githubusercontent.com/HeyItsGilbert/PesterExplorer/main/images/Show-PesterResultTree.png\" /\u003e\u003c/center\u003e\r\n\r\n## Contributing\r\n\r\nPlease read the Contributors guidelines.\r\n\r\nMake sure you bootstrap your environment by running the build command.\r\n\r\n```pwsh\r\n.\\build.ps1 -Task Init -Bootstrap\r\n```\r\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fheyitsgilbert%2Fpesterexplorer","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fheyitsgilbert%2Fpesterexplorer","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fheyitsgilbert%2Fpesterexplorer/lists"}