Skip to content

Instantly share code, notes, and snippets.

@Naedri
Naedri / automated-js-testing-frameworks.md
Last active August 24, 2023 22:27
A timeline chart illustrating the history of automated JavaScript testing frameworks and their generations.
%%{init: { 'logLevel': 'debug', 'theme': 'forest' } }%%

timeline

%%title History of Automated JS Testing Frameworks

section Prerequisites
    1993: Web
    2000-2004: Start of automation with simple test scripts
@Naedri
Naedri / styles-checklist-to-css-from.scss
Last active November 24, 2023 08:21
Checklist to know if a SCSS style file can be simplified into CSS.
// 1. File Extension
// - Example: The file is named styles.scss
// 2. SCSS Syntax Features
// - Example: Use of variables, nesting, mixins, and extends in this file.
$base-font-size: 16px;
body {
font-size: $base-font-size;