Skip to content

Instantly share code, notes, and snippets.

@RossJHagan
RossJHagan / GUIDE.md
Last active June 15, 2017 16:51
Aurelia CLI based project (0.13.6) - Add e2e tests [Typescript based]

Setting up Aurelia CLI based project with e2e tests

Disclaimer: This is a basic implementation, and much of the configuration files have been lifted from the aurelia skeleton.

##Install dependencies

npm i -D del gulp-protractor

Establish configurations

@sdurandeu
sdurandeu / gist:80b286cd0c3971576d39
Last active June 13, 2022 13:55
MsBuild: Add custom files in web deploy package
<Target Name="AdditionalFilesForPackage" AfterTargets="CopyAllFilesToSingleFolderForPackage;CopyAllFilesToSingleFolderForMsDeploy">
<ItemGroup>
<AppDataFiles Include="$(MSBuildProjectDirectory)\App_Data\**\*" />
</ItemGroup>
<Copy SourceFiles="@(AppDataFiles)" DestinationFiles="@(AppDataFiles->'$(_PackageTempDir)\App_Data\%(RecursiveDir)%(Filename)%(Extension)')" SkipUnchangedFiles="true" />
</Target>
@javierarques
javierarques / protractorAPICheatsheet.md
Last active January 31, 2023 08:51
Protractor API Cheatsheet