<p>⁉</p>
Equivalent:
⁉
var emoji = "⁉";
var encodedEmoji = String.fromCodePoint(emoji.replace("&#", "0"));
element.innerHTML = encodedEmoji
| # PHP | |
| # Test and package your PHP project. | |
| # Add steps that run tests, save build artifacts, deploy, and more: | |
| # https://docs.microsoft.com/azure/devops/pipelines/languages/php | |
| pool: | |
| vmImage: 'Ubuntu 16.04' | |
| variables: | |
| phpVersion: 7.2 |
| 'use strict' | |
| const { Config } = require('@adonisjs/sink') | |
| const Auth = use('Adonis/Src/Auth') | |
| const User = use('App/Models/User') | |
| const { before, beforeEach, after, afterEach, test } = use('Test/Suite')('Authentication Test') | |
| test('Ensure Authentication Works', async ({ assert }) => { | |
| let httpSession = null | |
| const username = 'test' |
| # to generate your dhparam.pem file, run in the terminal | |
| openssl dhparam -out /etc/nginx/ssl/dhparam.pem 2048 |