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

🚀 9.3.0-alpha.11 #7524

Merged
merged 2 commits into from
Jun 11, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
26 changes: 7 additions & 19 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion packages/insomnia-inso/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"private": true,
"name": "insomnia-inso",
"version": "9.3.0-beta.2",
"version": "9.3.0-alpha.11",
"homepage": "https://insomnia.rest",
"description": "A CLI for Insomnia - The Collaborative API Design Tool",
"author": "Kong <office@konghq.com>",
Expand Down
2 changes: 1 addition & 1 deletion packages/insomnia-sdk/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"private": true,
"name": "insomnia-sdk",
"version": "9.3.0-beta.2",
"version": "9.3.0-alpha.11",
"description": "",
"main": "src/objects/index.ts",
"types": "src/objects/index.ts",
Expand Down
2 changes: 1 addition & 1 deletion packages/insomnia-send-request/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"private": true,
"name": "insomnia-send-request",
"license": "Apache-2.0",
"version": "9.3.0-beta.2",
"version": "9.3.0-alpha.11",
"author": "Kong <office@konghq.com>",
"main": "dist/index.js",
"types": "dist/send-request/index.d.ts",
Expand Down
2 changes: 1 addition & 1 deletion packages/insomnia-smoke-test/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
"bugs": {
"url": "https://github.com/kong/insomnia/issues"
},
"version": "9.3.0-beta.2",
"version": "9.3.0-alpha.11",
"scripts": {
"test:dev": "xvfb-maybe cross-env BUNDLE=dev playwright test",
"test:build": "xvfb-maybe cross-env BUNDLE=build playwright test",
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
import { expect } from '@playwright/test';

import { test } from '../../playwright/test';

test.describe('Plugins', async () => {
Expand All @@ -16,27 +14,4 @@ test.describe('Plugins', async () => {
// check if the plugin shows up on the plugin list
await page.getByRole('cell', { name: 'insomnia-plugin-demo-example' }).click();
});

test('Check Declarative Config and Kong Kubernetes config', async ({ page }) => {
await page.getByRole('button', { name: 'New Document' }).click();
await page.getByRole('dialog').getByRole('button', { name: 'Create' }).click();

// Set example OpenAPI spec
await page.click('text=start from an example');
await expect(page.locator('.app')).toContainText('This is a sample server Petstore server');

// Open declarative config
await page.getByLabel('Workspace actions').click();
await page.getByRole('menuitemradio', { name: 'Declarative Config (Legacy)' }).click();
// Check for declarative config contents
await page.getByText('_format_version').click();

// Switch to Kong for Kubernetes tab
await page.click('div[role="tab"]:has-text("Kong for Kubernetes")');

// Check for Kong for Kubernetes contents
await page.getByText('apiVersion: networking.k8s.io/v1').click();
});

// TODO: more scenarios will be added in follow-up iterations of increasing test coverage
});
2 changes: 1 addition & 1 deletion packages/insomnia-testing/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"private": true,
"name": "insomnia-testing",
"license": "Apache-2.0",
"version": "9.3.0-beta.2",
"version": "9.3.0-alpha.11",
"author": "Kong <office@konghq.com>",
"repository": {
"type": "git",
Expand Down
2 changes: 1 addition & 1 deletion packages/insomnia/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "insomnia",
"version": "9.3.0-beta.2",
"version": "9.3.0-alpha.11",
"productName": "Insomnia",
"private": true,
"description": "The Collaborative API Design Tool",
Expand Down
Loading