This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # P2P Delivery Platform - BDD Feature Files (Accumulative) | |
| # Each scenario has a unique ID for reference | |
| ## ============================================================================ | |
| ## PHASE 1: USER MANAGEMENT | |
| ## ============================================================================ | |
| Feature: User Registration and Authentication | |
| As a new user | |
| I want to register and login to the platform |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /** | |
| * Script: download_mp3s.js | |
| * Description: Downloads all MP3 files from a specific tab (if any) in a reciter page. | |
| * Usage: node download_mp3s.js "https://ourquraan.com/shyookh/<reciter>#<tab-id>" | |
| */ | |
| import fs from 'fs'; | |
| import path from 'path'; | |
| import axios from 'axios'; | |
| import * as cheerio from 'cheerio'; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/sh | |
| MODDATE=$(stat -c %Y ~/Documents/timetracker2/timetracker2.db) | |
| MODDATE=${MODDATE%% *} | |
| while [ : ] | |
| do | |
| sleep 180 | |
| echo $(date ) | |
| MODDATE2=$(stat -c %Y ~/Documents/timetracker2/timetracker2.db) | |
| MODDATE2=${MODDATE2%% *} | |
| if [ $MODDATE -eq $MODDATE2 ] |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # https://gist.github.com/ziadoz/3e8ab7e944d02fe872c3454d17af31a5 | |
| # https://gist.github.com/birdsarah/23312f1d7cbd687ac376c95662254773 | |
| # This script checks & downloads latest chromeDriver and geckoDriver IF needed. | |
| # New drivers are extracted and copied to $driversDestination | |
| # IMPORTANT: Remember to change $driversDestination variable below to match your case | |
| # You can call this script before launching your test suite so you always get latest drivers each run | |
| os=linux64 | |
| driversDestination=../dependencies/browser-drivers/ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| test 1 |