Let’s Encrypt is a free, automated, and open Certificate Authority.
- Install tools for using the Let's Encrypt certificates using Certbot
sudo apt-get update \
sudo apt-get install software-properties-common
import { Response, test } from '@playwright/test' | |
const pattern = new RegExp('some string...', 'i') | |
const urls = ['https://some.url.com/some/page.html'] | |
const requestURLValidator = (response: Response) => { | |
const requestURL = response.url() | |
if (pattern.test(requestURL)) { |
module.exports = { | |
root: true, | |
env: { | |
browser: true, | |
node: true, | |
}, | |
extends: [ | |
'eslint:recommended', | |
'plugin:vue/vue3-recommended', | |
'prettier' |
using System; | |
using System.Collections; | |
using System.Data; | |
using Moq; | |
namespace Moq.DataExtensions { | |
public static class MockFactoryDataExtensions { | |
public static Mock<IDbCommand> CreateIDbCommand(this MockFactory factory) { | |
var command = factory.Create<IDbCommand>(); |