Skip to content

Commit

Permalink
Fix a couple tests. (#662)
Browse files Browse the repository at this point in the history
  • Loading branch information
adamdriscoll authored Feb 26, 2019
1 parent 456790d commit d2beb56
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -71,6 +71,8 @@ Describe "Auto reload" {

It "auto reloads" {

Start-Sleep 1

Invoke-RestMethod http://localhost:10001/api/user | should be "2"

{
Expand Down
6 changes: 4 additions & 2 deletions src/UniversalDashboard.UITest/Integration/Grid.Tests.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -235,9 +235,11 @@ Describe "Grid" {
$Element.Length | Should be 6
}

Stop-SeDriver $Driver
Stop-UDDashboard -Server $Server
#Stop-SeDriver $Driver
#Stop-UDDashboard -Server $Server
}

return

Context "Grid" {
$dashboard = New-UDDashboard -Title "Test" -Content {
Expand Down
4 changes: 2 additions & 2 deletions src/UniversalDashboard/New-UDModuleManifest.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,11 @@ param(

Remove-Item (Join-Path $outputDirectory 'UniversalDashboard.Community.psd1') -ErrorAction SilentlyContinue -Force

$version = "2.3.1"
$version = "2.3.2"
#$prerelease = "-beta2"

$ReleaseNotes = "
For release notes, see: https://docs.universaldashboard.io/updates/v2.3.1
For release notes, see: https://docs.universaldashboard.io/updates/v2.3.2
"

$manifestParameters = @{
Expand Down

0 comments on commit d2beb56

Please sign in to comment.