Skip to content

Commit

Permalink
chore: rename tests
Browse files Browse the repository at this point in the history
  • Loading branch information
jenniferarnesen committed Sep 5, 2023
1 parent 42be6df commit c442c45
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions src/components/Item/AppItem/__tests__/getIframeSrc.spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ describe('getIframeSrc', () => {
expect(src).toEqual(expectedSrc)
})

it('should return the correct iframe src', () => {
it('org units chosen from the tree', () => {
const ouFilter = [
{
id: 'fdc6uOvgoji',
Expand All @@ -32,7 +32,7 @@ describe('getIframeSrc', () => {
)
})

it('org unit group in filter', () => {
it('org unit group and org unit from tree', () => {
const ouFilter = [
{
id: 'OU_GROUP-b0EsAxm8Nge',
Expand All @@ -51,7 +51,7 @@ describe('getIframeSrc', () => {
)
})

it('org unit level in filter', () => {
it('org unit level and org unit from tree', () => {
const ouFilter = [
{
id: 'LEVEL-m9lBJogzE95',
Expand All @@ -70,7 +70,7 @@ describe('getIframeSrc', () => {
)
})

it('user org unit in filter', () => {
it('user org unit', () => {
const ouFilter = [
{
id: 'USER_ORGUNIT',
Expand All @@ -82,7 +82,7 @@ describe('getIframeSrc', () => {
expect(src).toEqual(`${expectedSrc}&userOrgUnit=USER_ORGUNIT`)
})

it('all user org units in filter', () => {
it('all user org units', () => {
const ouFilter = [
{
id: 'USER_ORGUNIT_CHILDREN',
Expand Down

0 comments on commit c442c45

Please sign in to comment.