-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #130 from lilt/4.x-development
Release 4.3.0
- Loading branch information
Showing
38 changed files
with
1,388 additions
and
346 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
24 changes: 24 additions & 0 deletions
24
e2e/cypress/e2e/jobs/instant/success-path-multiple-disable-split-send.cy.js
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
const {generateJobData} = require('../../../support/job/generator.js'); | ||
|
||
describe( | ||
'[Instant] Success path for job with multiple target languages and disabled split send', | ||
() => { | ||
const entryLabel = 'The Future of Augmented Reality'; | ||
const entryId = 24; | ||
|
||
it('with copy slug disabled & enable after publish disabled', () => { | ||
const {jobTitle, slug} = generateJobData(); | ||
|
||
cy.instantFlow({ | ||
slug, | ||
entryLabel, | ||
jobTitle, | ||
entryId, | ||
copySlug: false, | ||
enableAfterPublish: false, | ||
languages: ['de', 'es', 'uk'], | ||
batchPublishing: true, | ||
splitSend: false | ||
}); | ||
}); | ||
}); |
25 changes: 25 additions & 0 deletions
25
e2e/cypress/e2e/jobs/instant/success-path-single-copy-slug-and-enable-after-publish.cy.js
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
const {generateJobData} = require('../../../support/job/generator.js'); | ||
|
||
describe( | ||
'[Instant] Success path for job with single target language', | ||
() => { | ||
const entryLabel = 'The Future of Augmented Reality'; | ||
const entryId = 24; | ||
|
||
it('with copy slug enabled & enable after publish enabled', () => { | ||
const {jobTitle, slug} = generateJobData(); | ||
|
||
cy.log(`Job title: ${jobTitle}`) | ||
cy.log(`Slug: ${slug}`) | ||
|
||
cy.instantFlow({ | ||
slug, | ||
entryLabel, | ||
jobTitle, | ||
entryId, | ||
copySlug: true, | ||
enableAfterPublish: true, | ||
languages: ["de"] | ||
}) | ||
}); | ||
}); |
22 changes: 22 additions & 0 deletions
22
e2e/cypress/e2e/jobs/instant/success-path-single-copy-slug.cy.js
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
const {generateJobData} = require('../../../support/job/generator.js'); | ||
|
||
describe( | ||
'[Instant] Success path for job with single target language', | ||
() => { | ||
const entryLabel = 'The Future of Augmented Reality'; | ||
const entryId = 24; | ||
|
||
it('with copy slug enabled & enable after publish disabled', () => { | ||
const {jobTitle, slug} = generateJobData(); | ||
|
||
cy.instantFlow({ | ||
slug, | ||
entryLabel, | ||
jobTitle, | ||
entryId, | ||
copySlug: true, | ||
enableAfterPublish: false, | ||
languages: ["de"] | ||
}) | ||
}); | ||
}); |
23 changes: 23 additions & 0 deletions
23
e2e/cypress/e2e/jobs/instant/success-path-single-disable-split-send.cy.js
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
const {generateJobData} = require('../../../support/job/generator.js'); | ||
|
||
describe( | ||
'[Instant] Success path for job with single target language', | ||
() => { | ||
const entryLabel = 'The Future of Augmented Reality'; | ||
const entryId = 24; | ||
|
||
it('with copy slug disabled & enable after publish disabled', () => { | ||
const {jobTitle, slug} = generateJobData(); | ||
|
||
cy.instantFlow({ | ||
slug, | ||
entryLabel, | ||
jobTitle, | ||
entryId, | ||
copySlug: false, | ||
enableAfterPublish: false, | ||
languages: ["de"], | ||
splitSend: false, | ||
}) | ||
}); | ||
}); |
22 changes: 22 additions & 0 deletions
22
e2e/cypress/e2e/jobs/instant/success-path-single-enable-after-publish.cy.js
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
const {generateJobData} = require('../../../support/job/generator.js'); | ||
|
||
describe( | ||
'[Instant] Success path for job with single target language', | ||
() => { | ||
const entryLabel = 'The Future of Augmented Reality'; | ||
const entryId = 24; | ||
|
||
it('with copy slug disabled & enable after publish enabled', () => { | ||
const {jobTitle, slug} = generateJobData(); | ||
|
||
cy.instantFlow({ | ||
slug, | ||
entryLabel, | ||
jobTitle, | ||
entryId, | ||
copySlug: false, | ||
enableAfterPublish: true, | ||
languages: ["de"] | ||
}) | ||
}); | ||
}); |
25 changes: 25 additions & 0 deletions
25
e2e/cypress/e2e/jobs/verified/success-path-multiple-bulk-publishing-disable-split-send.cy.js
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
const {generateJobData} = require('../../../support/job/generator.js'); | ||
|
||
describe( | ||
'[Verified] Success path for job with multiple target languages with bulk publishing and disabled split send', | ||
() => { | ||
const entryLabel = 'The Future of Augmented Reality'; | ||
const entryId = 24; | ||
|
||
it('with copy slug disabled & enable after publish disabled', () => { | ||
const {jobTitle, slug} = generateJobData(); | ||
|
||
cy.verifiedFlow({ | ||
slug, | ||
entryLabel, | ||
jobTitle, | ||
entryId, | ||
copySlug: false, | ||
enableAfterPublish: false, | ||
languages: ['de', 'es', 'uk'], | ||
batchPublishing: true, | ||
splitSend: false | ||
}); | ||
}); | ||
|
||
}); |
25 changes: 25 additions & 0 deletions
25
e2e/cypress/e2e/jobs/verified/success-path-single-copy-slug-and-enable-after-publish.cy.js
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
const {generateJobData} = require('../../../support/job/generator.js'); | ||
|
||
describe( | ||
'[Verified] Success path for job with single target language', | ||
() => { | ||
const entryLabel = 'The Future of Augmented Reality'; | ||
const entryId = 24; | ||
|
||
it('with copy slug enabled & enable after publish enabled', () => { | ||
const {jobTitle, slug} = generateJobData(); | ||
|
||
cy.log(`Job title: ${jobTitle}`) | ||
cy.log(`Slug: ${slug}`) | ||
|
||
cy.verifiedFlow({ | ||
slug, | ||
entryLabel, | ||
jobTitle, | ||
entryId, | ||
copySlug: true, | ||
enableAfterPublish: true, | ||
languages: ["de"] | ||
}) | ||
}); | ||
}); |
22 changes: 22 additions & 0 deletions
22
e2e/cypress/e2e/jobs/verified/success-path-single-copy-slug.cy.js
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
const {generateJobData} = require('../../../support/job/generator.js'); | ||
|
||
describe( | ||
'[Verified] Success path for job with single target language', | ||
() => { | ||
const entryLabel = 'The Future of Augmented Reality'; | ||
const entryId = 24; | ||
|
||
it('with copy slug enabled & enable after publish disabled', () => { | ||
const {jobTitle, slug} = generateJobData(); | ||
|
||
cy.verifiedFlow({ | ||
slug, | ||
entryLabel, | ||
jobTitle, | ||
entryId, | ||
copySlug: true, | ||
enableAfterPublish: false, | ||
languages: ["de"] | ||
}) | ||
}); | ||
}); |
23 changes: 23 additions & 0 deletions
23
e2e/cypress/e2e/jobs/verified/success-path-single-disable-split-send.cy.js
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
const {generateJobData} = require('../../../support/job/generator.js'); | ||
|
||
describe( | ||
'[Verified] Success path for job with single target language', | ||
() => { | ||
const entryLabel = 'The Future of Augmented Reality'; | ||
const entryId = 24; | ||
|
||
it('with copy slug disabled & enable after publish disabled', () => { | ||
const {jobTitle, slug} = generateJobData(); | ||
|
||
cy.verifiedFlow({ | ||
slug, | ||
entryLabel, | ||
jobTitle, | ||
entryId, | ||
copySlug: false, | ||
enableAfterPublish: false, | ||
languages: ["de"], | ||
splitSend: false | ||
}) | ||
}); | ||
}); |
22 changes: 22 additions & 0 deletions
22
e2e/cypress/e2e/jobs/verified/success-path-single-enable-after-publish.cy.js
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
const {generateJobData} = require('../../../support/job/generator.js'); | ||
|
||
describe( | ||
'[Verified] Success path for job with single target language', | ||
() => { | ||
const entryLabel = 'The Future of Augmented Reality'; | ||
const entryId = 24; | ||
|
||
it('with copy slug disabled & enable after publish enabled', () => { | ||
const {jobTitle, slug} = generateJobData(); | ||
|
||
cy.verifiedFlow({ | ||
slug, | ||
entryLabel, | ||
jobTitle, | ||
entryId, | ||
copySlug: false, | ||
enableAfterPublish: true, | ||
languages: ["de"] | ||
}) | ||
}); | ||
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.