Skip to content

Commit

Permalink
decision service test plan
Browse files Browse the repository at this point in the history
  • Loading branch information
jomarko committed Apr 5, 2024
1 parent 06e3bdf commit fbe4055
Showing 1 changed file with 64 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,64 @@
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you may not use this file except in compliance
* with the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
* KIND, either express or implied. See the License for the
* specific language governing permissions and limitations
* under the License.
*/

import { test, expect } from "../__fixtures__/base";
import { DefaultNodeName, NodeType } from "../__fixtures__/nodes";

test.beforeEach(async ({ editor }) => {
await editor.open();
});

test.describe("Model Decision Service", () => {
test.skip("Decision Service Signature", async () => {
//TODO https://github.com/apache/incubator-kie-issues/issues/663
});

test.skip("Decision Service Inputs Order", async () => {
//TODO https://github.com/apache/incubator-kie-issues/issues/664
});

test("Delete Decision from the Decision Service upper divider", async () => {
//TODO https://github.com/apache/incubator-kie-issues/issues/879
});

test("Delete Decision from the Decision Service below divider", async () => {
//TODO https://github.com/apache/incubator-kie-issues/issues/879
});

test("Resize non empty decision service", async () => {
// https://github.com/apache/incubator-kie-issues/issues/881
// move into `resize` spec file, once is merged https://github.com/ljmotta/kie-tools/pull/27
});

test.skip("Drag Decision directly into Decision Service", async () => {
//TODO https://github.com/apache/incubator-kie-issues/issues/896
});

test.skip("Add connected Decision from Decision that is already part of Decision Service", async () => {
//TODO https://github.com/apache/incubator-kie-issues/issues/897
});

test("Move Decision inside Decision Service by a keyboard", async () => {
//TODO https://github.com/apache/incubator-kie-issues/issues/876
});

test.skip("Move Decision inside Decision Service by a keyboard without crossing sections", async () => {
//TODO https://github.com/apache/incubator-kie-issues/issues/876
});
});

0 comments on commit fbe4055

Please sign in to comment.