Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@empiricalrun/playwright-utils

Package Overview
Dependencies
Maintainers
0
Versions
138
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@empiricalrun/playwright-utils - npm Package Compare versions

Comparing version 0.1.0 to 0.2.0

dist/config.d.ts

6

CHANGELOG.md
# @empiricalrun/playwright-utils
## 0.2.0
### Minor Changes
- 4189f0f: feat: add email client for email testing scenarios
## 0.1.0

@@ -4,0 +10,0 @@

5

dist/index.d.ts

@@ -1,4 +0,3 @@

import { type PlaywrightTestConfig } from "@playwright/test";
declare const baseConfig: PlaywrightTestConfig;
export { baseConfig };
export { baseConfig } from "./config";
export * from "./email";
//# sourceMappingURL=index.d.ts.map

36

dist/index.js
"use strict";
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
if (k2 === undefined) k2 = k;
var desc = Object.getOwnPropertyDescriptor(m, k);
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
desc = { enumerable: true, get: function() { return m[k]; } };
}
Object.defineProperty(o, k2, desc);
}) : (function(o, m, k, k2) {
if (k2 === undefined) k2 = k;
o[k2] = m[k];
}));
var __exportStar = (this && this.__exportStar) || function(m, exports) {
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
};
Object.defineProperty(exports, "__esModule", { value: true });
exports.baseConfig = void 0;
const baseConfig = {
testDir: "./tests",
fullyParallel: true,
forbidOnly: false,
retries: process.env.CI ? 2 : 0,
workers: undefined,
reporter: [["html"], ["json", { outputFile: "test-results/summary.json" }]],
use: {
trace: "retain-on-failure",
video: "on",
viewport: { width: 1366, height: 768 },
actionTimeout: 15000,
},
expect: {
timeout: 15000,
},
timeout: 0,
};
exports.baseConfig = baseConfig;
var config_1 = require("./config");
Object.defineProperty(exports, "baseConfig", { enumerable: true, get: function () { return config_1.baseConfig; } });
__exportStar(require("./email"), exports);
{
"name": "@empiricalrun/playwright-utils",
"version": "0.1.0",
"version": "0.2.0",
"publishConfig": {

@@ -18,5 +18,8 @@ "registry": "https://registry.npmjs.org/",

},
"dependencies": {
"mailosaur": "^8.6.1"
},
"scripts": {
"dev": "tsc --build --watch",
"build": "tsc --build",
"build": "tsc --build && node ./../../tools/static-env-vars.js dist",
"clean": "tsc --build --clean",

@@ -23,0 +26,0 @@ "lint": "eslint .",

Sorry, the diff of this file is not supported yet

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc