Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Whitespace change to test CI build #2341

Open
wants to merge 9 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -94,12 +94,12 @@
<HintPath>..\packages\Selenium.Support.3.7.0\lib\net45\WebDriver.Support.dll</HintPath>
</Reference>
</ItemGroup>
<Import Project="..\packages\Selenium.WebDriver.ChromeDriver.2.33.0\build\Selenium.WebDriver.ChromeDriver.targets" Condition="Exists('..\packages\Selenium.WebDriver.ChromeDriver.2.33.0\build\Selenium.WebDriver.ChromeDriver.targets')" />
<Import Project="..\packages\Selenium.WebDriver.ChromeDriver.2.43.0\build\Selenium.WebDriver.ChromeDriver.targets" Condition="Exists('..\packages\Selenium.WebDriver.ChromeDriver.2.43.0\build\Selenium.WebDriver.ChromeDriver.targets')" />
<Target Name="EnsureNuGetPackageBuildImports" BeforeTargets="PrepareForBuild">
<PropertyGroup>
<ErrorText>This project references NuGet package(s) that are missing on this computer. Use NuGet Package Restore to download them. For more information, see http://go.microsoft.com/fwlink/?LinkID=322105. The missing file is {0}.</ErrorText>
</PropertyGroup>
<Error Condition="!Exists('..\packages\Selenium.WebDriver.ChromeDriver.2.33.0\build\Selenium.WebDriver.ChromeDriver.targets')" Text="$([System.String]::Format('$(ErrorText)', '..\packages\Selenium.WebDriver.ChromeDriver.2.33.0\build\Selenium.WebDriver.ChromeDriver.targets'))" />
<Error Condition="!Exists('..\packages\Selenium.WebDriver.ChromeDriver.2.43.0\build\Selenium.WebDriver.ChromeDriver.targets')" Text="$([System.String]::Format('$(ErrorText)', '..\packages\Selenium.WebDriver.ChromeDriver.2.43.0\build\Selenium.WebDriver.ChromeDriver.targets'))" />
</Target>
<!-- To modify your build process, add your task inside one of the targets below and uncomment it.
Other similar extension points exist, see Microsoft.Common.targets.
Expand Down
4 changes: 2 additions & 2 deletions AllReadyApp/AllReady.IntegrationTest/Pages.fs
Original file line number Diff line number Diff line change
Expand Up @@ -128,8 +128,8 @@ module AdminOrganizationCreate =
"#Location_State" << details.State
"#Location_PostalCode" << details.PostalCode.ToString()
"#Location_Country" << details.Country
click "Link to an external policy"
waitFor privicyPolicyFieldVisible
click "#show-pp-url"
waitFor <| fadedIn "#PrivacyPolicyUrl"
"#PrivacyPolicyUrl" << details.PrivacyPolicyUrl

let Save _ =
Expand Down
2 changes: 1 addition & 1 deletion AllReadyApp/AllReady.IntegrationTest/packages.config
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<package id="Newtonsoft.Json" version="10.0.3" targetFramework="net462" />
<package id="Selenium.Support" version="3.7.0" targetFramework="net462" />
<package id="Selenium.WebDriver" version="3.7.0" targetFramework="net462" />
<package id="Selenium.WebDriver.ChromeDriver" version="2.33.0" targetFramework="net462" />
<package id="Selenium.WebDriver.ChromeDriver" version="2.43.0" targetFramework="net462" />
<package id="SizSelCsZzz" version="0.3.36.0" targetFramework="net462" />
<package id="System.ValueTuple" version="4.4.0" targetFramework="net462" />
</packages>
Original file line number Diff line number Diff line change
Expand Up @@ -7,5 +7,6 @@ public class VolunteerTaskAssignViewModel
public int EventId { get; set; }
public int VolunteerTaskId { get; set; }
public List<string> AssignedUsers { get; set; }

}
}
2 changes: 1 addition & 1 deletion appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ test_script:
- ps: cd .\AllReadyApp\Web-App\AllReady.UnitTest
- cmd: dotnet test
# === Run Integration Tests
# Use the version of chromedriver.exe from the build server to ensure it matches the browser version
# Use the version of chromedriver.exe from the build server to ensure it matches the browser version
- ps: Copy-Item "C:\Tools\WebDriver\chromedriver.exe" (Join-Path $env:APPVEYOR_BUILD_FOLDER "AllReadyApp\AllReady.IntegrationTest\bin\Release")
- ps: $env:Data:DefaultConnection:ConnectionString="Server=(local)\SQL2016;Database=master;User ID=sa;Password=Password12!"
- ps: $env:Data:HangfireConnection:ConnectionString="Server=(local)\SQL2016;Database=master;User ID=sa;Password=Password12!"
Expand Down