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
const puppeteer = require('puppeteer'); | |
// Include to be able to export files with node | |
const fs = require('fs'); | |
// This prepares the filenames for the coverage .css files | |
function exportCSSFileName(url) { | |
// Remove https:// from the beginning of the string | |
// Remove .css* from the end of the string |
NewerOlder