aboutsummaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorYuchen Pei <hi@ypei.me>2022-09-27 09:38:22 +1000
committerYuchen Pei <hi@ypei.me>2022-09-27 09:38:22 +1000
commitdb0013b57cce91cd516e0d9ecfa6f758f3d14d03 (patch)
tree5b0b3b159951f7c9f43fbf0e4e313e638289b376 /test
parent313633d1b84efa6d171c69cae0297f24f8f2931f (diff)
disable contactfinder tests by default
It tends to time out. Also moved injectContactFinder
Diffstat (limited to 'test')
-rw-r--r--test/spec/LibreJSSpec.js59
1 files changed, 31 insertions, 28 deletions
diff --git a/test/spec/LibreJSSpec.js b/test/spec/LibreJSSpec.js
index 62a44a0..77563d2 100644
--- a/test/spec/LibreJSSpec.js
+++ b/test/spec/LibreJSSpec.js
@@ -44,6 +44,7 @@ describe('LibreJS\' components', () => {
let unknownLicensed = `// @license ${unknownLicense.magnet} ${unknownLicense.id}\n${nontrivial}\n// @license-end`;
let malformedLicensed = `// @license\n${nontrivial}`;
let tab, documentUrl;
+ const enableContactFinderTests = false;
beforeAll(async () => {
let url = browser.extension.getURL('/test/resources/index.html');
@@ -291,35 +292,37 @@ describe('LibreJS\' components', () => {
});
});
- describe('The contact finder', () => {
- it('should display the contact finder iframe', async (done) => {
- await browser.runtime.connect({ name: "port-from-cs" }).postMessage({ invoke_contact_finder: 1 });
- // Direct await / async does not work as executeScript does not wait
- // for the listener
- setTimeout(async () => {
- const frame = await browser.tabs.executeScript(tab.id, {
- code: 'document.getElementById("_LibreJS_frame").outerHTML'
- })
- expect(frame).toBeTruthy();
- done();
- }, 100);
- });
- it('should display the correct contact info in the contact finder iframe', async (done) => {
- await browser.runtime.connect({ name: "port-from-cs" }).postMessage({ invoke_contact_finder: 1 });
- // Direct await / async does not work as executeScript does not wait
- // for the listener
- setTimeout(async () => {
- const [frameBody] = await browser.tabs.executeScript(tab.id, {
- code: 'document.getElementById("_LibreJS_frame").contentWindow.document.body.innerHTML'
- });
- expect(frameBody).not.toContain('About Us');
- expect(frameBody).toContain('Contact Us');
- expect(frameBody).toContain('Website Feedback');
- expect(frameBody).toContain('lib@re.js');
- done();
- }, 200);
+ if (enableContactFinderTests) {
+ describe('The contact finder', () => {
+ it('should display the contact finder iframe', async (done) => {
+ await browser.runtime.connect({ name: "port-from-cs" }).postMessage({ invoke_contact_finder: 1 });
+ // Direct await / async does not work as executeScript does not wait
+ // for the listener
+ setTimeout(async () => {
+ const frame = await browser.tabs.executeScript(tab.id, {
+ code: 'document.getElementById("_LibreJS_frame").outerHTML'
+ })
+ expect(frame).toBeTruthy();
+ done();
+ }, 100);
+ });
+ it('should display the correct contact info in the contact finder iframe', async (done) => {
+ await browser.runtime.connect({ name: "port-from-cs" }).postMessage({ invoke_contact_finder: 1 });
+ // Direct await / async does not work as executeScript does not wait
+ // for the listener
+ setTimeout(async () => {
+ const [frameBody] = await browser.tabs.executeScript(tab.id, {
+ code: 'document.getElementById("_LibreJS_frame").contentWindow.document.body.innerHTML'
+ });
+ expect(frameBody).not.toContain('About Us');
+ expect(frameBody).toContain('Contact Us');
+ expect(frameBody).toContain('Website Feedback');
+ expect(frameBody).toContain('lib@re.js');
+ done();
+ }, 200);
+ });
});
- });
+ }
describe('The prefs', () => {
it('should have the defaults', async () => {