Giter Site home page Giter Site logo

playwright-framework's People

Contributors

dependabot[bot] avatar mikestreety avatar

Watchers

 avatar  avatar

playwright-framework's Issues

Add generic testing folder

let devs = [
	'Desktop Chrome',
	'Desktop Firefox',
	'Desktop Safari',
	'Pixel 5',
	'iPhone 12',
];

function slugify(str) {
	return String(str)
		.normalize('NFKD') // split accented characters into their base characters and diacritical marks
		.replace(/[\u0300-\u036f]/g, '') // remove all the accents, which happen to be all in the \u03xx UNICODE block.
		.trim() // trim leading or trailing whitespace
		.toLowerCase() // convert to lowercase
		.replace(/[^a-z0-9 -]/g, '') // remove non-alphanumeric characters
		.replace(/\s+/g, '-') // replace spaces with hyphens
		.replace(/-+/g, '-'); // remove consecutive hyphens
}

let projects: any[] = [];

for (let d of devs) {
	let device = devices[d];
	let folders = [
		device.defaultBrowserType,
		(device.isMobile ? 'mobile' : 'desktop'),
		slugify(d)
	].map(f => f + '\/').join('|');

	projects.push({
		name: d,
		use: { ...devices[d] },
		testDir: './tests',
		testMatch: new RegExp('tests\/(' + folders + ')?[^\/]+.(spec|test).(c|m)?[jt]s(x)?')
	})
}

Allows for tests/mobile or tests/desktop etc

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.