Skip to content

Commit

Permalink
add failing test
Browse files Browse the repository at this point in the history
  • Loading branch information
dagfinno committed Feb 28, 2025
1 parent e9dec01 commit edfa95b
Showing 1 changed file with 3 additions and 4 deletions.
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
import http from 'k6/http';
import { serviceOwners, endUsers } from '../../performancetest_common/readTestdata.js';
import { randomItem, uuidv4, URL} from '../../../common/k6-utils.js';

import http from 'k6/http';
import { expect, expectStatusFor } from "../../../common/testimports.js";
import { describe } from '../../../common/describe.js';
import { baseUrlServiceOwner } from '../../../common/config.js';
Expand Down Expand Up @@ -37,7 +36,7 @@ const filter_combos = [
{label: "search-createdafter", filters: ["Search", "createdAfter"]},
{label: "search-serviceresource-enduser-createdafter", filters: ["Search", "serviceResource", "endUser", "createdAfter"]},
{label: "search-enduser-createdafter-nohit", filters: ["Search", "endUser", "createdAfter"]},
//{label: "search", filters: ["Search"]},
{label: "search", filters: ["Search"]},

];

Expand Down Expand Up @@ -102,7 +101,7 @@ export default function() {
}

describe('Perform serviceowner dialog list', () => {
let r = http.get(url.toString(), paramsWithToken); //getSOWithSearchParams('dialogs', queryParams, paramsWithToken);
let r = http.get(url.toString(), paramsWithToken);
expectStatusFor(r).to.equal(200);
expect(r, 'response').to.have.validJsonBody();
return r
Expand Down

0 comments on commit edfa95b

Please sign in to comment.