Skip to content

Commit

Permalink
🩹 [Patch]: Remove module import tests (#17)
Browse files Browse the repository at this point in the history
## Description

- Remove module import tests

## Type of change

<!-- Use the check-boxes [x] on the options that are relevant. -->

- [ ] 📖 [Docs]
- [ ] 🪲 [Fix]
- [x] 🩹 [Patch]
- [ ] ⚠️ [Security fix]
- [ ] 🚀 [Feature]
- [ ] 🌟 [Breaking change]

## Checklist

<!-- Use the check-boxes [x] on the options that are relevant. -->

- [x] I have performed a self-review of my own code
- [x] I have commented my code, particularly in hard-to-understand areas
  • Loading branch information
MariusStorhaug committed Apr 13, 2024
1 parent a9c0b82 commit fe0a911
Showing 1 changed file with 0 additions and 9 deletions.
9 changes: 0 additions & 9 deletions tests/Store.Tests.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -11,15 +11,6 @@ Param(
Write-Verbose "Path to the module: [$Path]" -Verbose

Describe 'Store' {
Context 'Module' {
It 'The module should be available' {
Get-Module -Name 'Store' -ListAvailable | Should -Not -BeNullOrEmpty
Write-Verbose (Get-Module -Name 'Store' -ListAvailable | Out-String) -Verbose
}
It 'The module should be importable' {
{ Import-Module -Name 'Store' -Verbose -RequiredVersion 999.0.0 -Force } | Should -Not -Throw
}
}
Context 'Initialize-Store' {
It 'Should be available' {
Get-Command -Name 'Initialize-Store' | Should -Not -BeNullOrEmpty
Expand Down

0 comments on commit fe0a911

Please sign in to comment.