- Install:
- jest:
npm install --save-dev jest
- ts-jest:
npm install --save-dev ts-jest @types/jest
- Modify package.json
"jest": {
"transform": {
"^.+\\.tsx?$": "ts-jest"
Configuring VSTS
https://docs.microsoft.com/en-us/vsts/build-release/apps/aspnet/build-aspnet-core?tabs=vsts
What follows can essentially be sourced from the link below: https://docs.microsoft.com/en-us/vsts/build-release/apps/cd/deploy-webdeploy-iis-deploygroups
This is some doco covering how to set-up a VPN for TESTING PURPOSES within Azure
This simple scenario will use: A Policy Bases VPN Type on a Site-to-site network using the Basic gateway SKU
This can be done via PowerShell and the Azure Portal, what follows is essentially a copy of: https://docs.microsoft.com/en-us/azure/vpn-gateway/vpn-gateway-howto-site-to-site-resource-manager-portal
Naming of the italicised components is up to the end user, however naming should be consistent between components
This often happens as a result of uninstalling the application.
using Conventional; | |
using Conventional.Conventions; | |
using System; | |
using System.Linq; | |
namespace Conventions | |
{ | |
public static class Convention | |
{ | |
public static RequiresACorrespondingConcreteImplementationConventionSpecification InterfaceMustHaveCorrespondingConcreteType(Type[] subjects) |
using System; | |
using System.Linq; | |
using Conventional; | |
using Conventional.Conventions; | |
namespace ConventionTests | |
{ | |
public class PropertyNamesOfTypeMustEndWith : ConventionSpecification | |
{ | |
private readonly Type _type; |
using System; | |
using System.Collections.Generic; | |
using System.Dynamic; | |
using System.Linq; | |
using System.Xml.Linq; | |
namespace Expando | |
{ | |
public static class XmlExpando | |
{ |