Skip to content

Commit

Permalink
chore(test-data): test public api for model
Browse files Browse the repository at this point in the history
  • Loading branch information
jaikamat committed Feb 5, 2024
1 parent 1019be0 commit 4b60553
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 2 deletions.
2 changes: 1 addition & 1 deletion models/standalone-price/src/builder.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
/* eslint-disable jest/valid-title */
import { createBuilderSpec } from '@commercetools-test-data/core/test-utils';
import { TStandalonePrice, TStandalonePriceGraphql } from './types';
import * as StandalonePrice from '.';
import { StandalonePrice } from '.';

describe('builder', () => {
it(
Expand Down
3 changes: 3 additions & 0 deletions models/standalone-price/src/index.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
export * as StandalonePriceDraft from './standalone-price-draft';
export * as StandalonePrice from '.';

export { default as random } from './builder';
export { default as presets } from './presets';
export * from './types';
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
/* eslint-disable jest/valid-title */
import { createBuilderSpec } from '@commercetools-test-data/core/test-utils';
import { TStandalonePriceDraft, TStandalonePriceDraftGraphql } from '../types';
import * as StandalonePriceDraft from '.';
import { StandalonePriceDraft } from '..';

describe('builder', () => {
it(
Expand Down

0 comments on commit 4b60553

Please sign in to comment.