Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Release v4.2.3 #1056

Merged
merged 19 commits into from
Aug 10, 2023
Merged
Show file tree
Hide file tree
Changes from 16 commits
Commits
Show all changes
19 commits
Select commit Hold shift + click to select a range
70e5d47
Qoldev 515 funnelack upgrade set location (#1029)
ghazal-salehi Jul 27, 2023
1af5329
Updated package-lock reference
stvp-qld Jul 27, 2023
e56d0dc
New SWE version and package refs for Node 18.17
stvp-qld Jul 27, 2023
07bfa04
QOLDEV 518 update all funnelback refs and JS replacement function
stvp-qld Jul 28, 2023
dfbf826
Revert "New SWE version and package refs for Node 18.17"
stvp-qld Jul 28, 2023
5b2ed14
Merge pull request #1034 from qld-gov-au/QOLDEV-518-set-funnelback-re…
stvp-qld Jul 31, 2023
8dea57f
QOLDEV-518 added console notice when a string replacement occurs
stvp-qld Jul 31, 2023
8f234e9
QOLDEV-518 added console notice when a string replacement occurs
stvp-qld Jul 31, 2023
78e7b29
QOLDEV-518 wording changes to console message
stvp-qld Jul 31, 2023
8008ace
Merge pull request #1039 from qld-gov-au/QOLDEV-518-console-log-legac…
stvp-qld Jul 31, 2023
f78ecc9
QOLDEV-518 double to single quotes
stvp-qld Jul 31, 2023
116e882
Merge branch 'release-v4.2.3' into QOLDEV-518-console-log-legacy-url
stvp-qld Jul 31, 2023
351e8f9
Merge pull request #1041 from qld-gov-au/QOLDEV-518-console-log-legac…
stvp-qld Aug 1, 2023
bde3862
QOLDEV-515 Updating rexpected results from search for 'jobs' (#1046)
ghazal-salehi Aug 1, 2023
8a49256
Qoldev 515 funnelback filter results (#1055)
ghazal-salehi Aug 7, 2023
897a8c2
Release v4.2.3 (#1045) (#1057)
ghazal-salehi Aug 7, 2023
b1811df
Resolving conflicts v4.2.3 (#1061)
ghazal-salehi Aug 8, 2023
ce43ea3
Resolving conflict v2 (#1065)
ghazal-salehi Aug 9, 2023
a8994aa
Merge branch 'master' into release-v4.2.3
ThrawnCA Aug 9, 2023
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion e2e/__tests__/components/funnelback-search-test.js
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ describe('SWE Header testing', () => {
await page.waitForTimeout(ct.WT);
expect(
await page.$$eval('.qg-search-concierge-content li button', nodes => nodes.map(n => n.textContent)),
).toEqual(['jobs in qld government', 'jobs', 'jobs in the queensland government']);
).toEqual(['jobs in queensland government', 'government jobs', 'jobs volunteers']);
});

afterAll(async () => {
Expand Down
8 changes: 6 additions & 2 deletions e2e/__tests__/layout/footer-feedback-test.js
Original file line number Diff line number Diff line change
Expand Up @@ -12,14 +12,18 @@ beforeAll(async () => {

describe('SWE Footer testing', () => {
test('Footer feedback', async () => {

await page.click('.qg-feedback-toggle');

// check getRecaptcha input value is populated as expected and is false by default
await page.waitForTimeout(ct.WT);
const getRecaptcha = await page.$eval('input[name=g-recaptcha-response]', el => $(el).val());
expect(getRecaptcha).toMatch(/false/);
await page.click('#page-feedback-about-this-website');
await page.click('#fs-very-satisfied');

await page.click('label[for="page-feedback-about-this-website"]');
await page.click('label[for="fs-very-satisfied"]');
await page.type('#comments', 'Useful website', { delay: 20 });

// this test case causing massive fail in circleci, which have issue when submitting a real form with remote api, disabled this test for now.
// as we are moving out from circleci, Github Actions pipeline doesn't has this issues
/*
Expand Down
Loading