Tools
vscode-snippets.json
{
"Playwright Test Scaffold": {
"scope": "javascript,typescript",
"prefix": ["pwtest", "playwright-test", "playwright"],
"body": [
"const { test, expect } = require('@playwright/test');\n",
"test('${1:title}', async ({ page }) => {",
"\u0009await page.goto('${2:url}')",
"});"
],
"description": "Scaffold a playwright test"
}
}Tip - Another solution
vscode-snippets.json
{
"Playwright Test Scaffold": {
"scope": "javascript,typescript",
"prefix": ["pwtest", "playwright-test", "playwright"],
"body": [
"const { test, expect } = require('@playwright/test');\n",
"test('${1:title}', async ({ page }) => {",
"\u0009await page.goto('${2:url}')",
"});"
],
"description": "Scaffold a playwright test"
}
}Command-line
- fzf - 🌸 A command-line fuzzy finder
- bat - A cat(1) clone with wings.
- zoxide : A smarter cd command for your terminal.
Shells and Prompts
- Nushell : A new type of shell. Been playing around with it and it’s pretty cool.
- Zsh & Oh My ZSH : A delightful, community-driven framework for managing your Zsh configuration.
- Oh My Posh
- Starship : The minimal, blazing-fast, and infinitely customizable prompt for any shell!
Last updated on