Skip to content

Commit

Permalink
Release v1.0.0-next.1 (#1181)
Browse files Browse the repository at this point in the history
* prepare next.1
* two e2e instances is enough
* remove bad refactoring and hardening of e2e test for client buttons
  • Loading branch information
maxmarkus authored Mar 19, 2020
1 parent 270469f commit 3b073d6
Show file tree
Hide file tree
Showing 9 changed files with 7 additions and 11 deletions.
3 changes: 0 additions & 3 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -101,9 +101,6 @@ jobs:

- name: 'Integration Testing 2'
<<: *integration-testing

- name: 'Integration Testing 3'
<<: *integration-testing

# ----- NPM PUBLISH -----
- stage: 'Publish'
Expand Down
2 changes: 1 addition & 1 deletion client/public-ie11/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@luigi-project/client-ie11",
"version": "1.0.0-bbqseb.41.0",
"version": "1.0.0-next.1",
"description": "Javascript library supporting consumers of the Luigi framework",
"license": "Apache-2.0",
"main": "luigi-client-ie11.js",
Expand Down
2 changes: 1 addition & 1 deletion client/public/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@luigi-project/client",
"version": "1.0.0-bbqseb.41.0",
"version": "1.0.0-next.1",
"description": "Javascript library supporting consumers of the Luigi framework",
"license": "Apache-2.0",
"main": "luigi-client.js",
Expand Down
2 changes: 1 addition & 1 deletion core/public-ie11/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@luigi-project/core-ie11",
"version": "1.0.0-bbqseb.41.0",
"version": "1.0.0-next.1",
"description": "Javascript library supporting consumers of the Luigi framework with Internet Explorer 11 capability",
"license": "Apache-2.0",
"main": "luigi-ie11.js",
Expand Down
2 changes: 1 addition & 1 deletion core/public/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@luigi-project/core",
"version": "1.0.0-bbqseb.41.0",
"version": "1.0.0-next.1",
"description": "Javascript library supporting consumers of the Luigi framework",
"license": "Apache-2.0",
"main": "luigi.js",
Expand Down
2 changes: 0 additions & 2 deletions core/src/services/iframe.js
Original file line number Diff line number Diff line change
Expand Up @@ -283,8 +283,6 @@ class IframeClass {
const message = ['init', JSON.stringify(componentData.context)];
IframeHelpers.sendMessageToIframe(config.iframe, message);
});
} else if (!config.isFallbackFrame) {
this.setOkResponseHandler(config, component, node);
}
}
} else {
Expand Down
2 changes: 1 addition & 1 deletion plugins/auth/public/auth-oauth2/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@luigi-project/plugin-auth-oauth2",
"version": "1.0.0-bbqseb.41.0",
"version": "1.0.0-next.1",
"description": "OAuth2 implicit grant provider plugin for @luigi-project/core",
"license": "Apache-2.0",
"main": "plugin.js",
Expand Down
2 changes: 1 addition & 1 deletion plugins/auth/public/auth-oidc/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@luigi-project/plugin-auth-oidc",
"version": "1.0.0-bbqseb.41.0",
"version": "1.0.0-next.1",
"description": "OpenID Connect provider plugin for @luigi-project/core",
"license": "Apache-2.0",
"main": "plugin.js",
Expand Down
1 change: 1 addition & 0 deletions test/e2e-test-application/e2e/tests/microfrontends.spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -139,6 +139,7 @@ describe('SplitView Microfrontend', () => {
}
];
tests.forEach(test => {
cy.wait(50);
test.buttonsVisible.forEach((enabled, index) => {
cy.splitViewButtons($iframeBody)
.contains(buttons[index])
Expand Down

0 comments on commit 3b073d6

Please sign in to comment.