summaryrefslogtreecommitdiffstats
path: root/remote/test/puppeteer/test/installation/assets/puppeteer-core
diff options
context:
space:
mode:
Diffstat (limited to 'remote/test/puppeteer/test/installation/assets/puppeteer-core')
-rw-r--r--remote/test/puppeteer/test/installation/assets/puppeteer-core/imports.js9
-rw-r--r--remote/test/puppeteer/test/installation/assets/puppeteer-core/launch.js22
-rw-r--r--remote/test/puppeteer/test/installation/assets/puppeteer-core/requires.cjs9
3 files changed, 40 insertions, 0 deletions
diff --git a/remote/test/puppeteer/test/installation/assets/puppeteer-core/imports.js b/remote/test/puppeteer/test/installation/assets/puppeteer-core/imports.js
new file mode 100644
index 0000000000..8f8fb329e7
--- /dev/null
+++ b/remote/test/puppeteer/test/installation/assets/puppeteer-core/imports.js
@@ -0,0 +1,9 @@
+/**
+ * @license
+ * Copyright 2022 Google Inc.
+ * SPDX-License-Identifier: Apache-2.0
+ */
+
+import 'puppeteer-core';
+import 'puppeteer-core/internal/revisions.js';
+import 'puppeteer-core/lib/esm/puppeteer/revisions.js';
diff --git a/remote/test/puppeteer/test/installation/assets/puppeteer-core/launch.js b/remote/test/puppeteer/test/installation/assets/puppeteer-core/launch.js
new file mode 100644
index 0000000000..4776d7e261
--- /dev/null
+++ b/remote/test/puppeteer/test/installation/assets/puppeteer-core/launch.js
@@ -0,0 +1,22 @@
+/**
+ * @license
+ * Copyright 2022 Google Inc.
+ * SPDX-License-Identifier: Apache-2.0
+ */
+
+import puppeteer from 'puppeteer-core';
+
+(async () => {
+ try {
+ await puppeteer.launch({
+ product: '${product}',
+ executablePath: 'node',
+ });
+ } catch (error) {
+ if (error.message.includes('Failed to launch the browser process')) {
+ process.exit(0);
+ }
+ console.error(error);
+ process.exit(1);
+ }
+})();
diff --git a/remote/test/puppeteer/test/installation/assets/puppeteer-core/requires.cjs b/remote/test/puppeteer/test/installation/assets/puppeteer-core/requires.cjs
new file mode 100644
index 0000000000..f4276f2589
--- /dev/null
+++ b/remote/test/puppeteer/test/installation/assets/puppeteer-core/requires.cjs
@@ -0,0 +1,9 @@
+/**
+ * @license
+ * Copyright 2022 Google Inc.
+ * SPDX-License-Identifier: Apache-2.0
+ */
+
+require('puppeteer-core');
+require('puppeteer-core/internal/revisions.js');
+require('puppeteer-core/lib/cjs/puppeteer/revisions.js');