executable-stories-playwright 8.5.6 → 8.5.7

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/dist/index.d.ts +6 -6
  2. package/package.json +2 -2
package/dist/index.d.ts CHANGED
@@ -1,7 +1,7 @@
1
1
  import * as _playwright_test from '@playwright/test';
2
2
  import { TestInfo, PlaywrightTestArgs, PlaywrightTestOptions, TestStepInfo } from '@playwright/test';
3
3
  export { TestStepInfo } from '@playwright/test';
4
- import * as executable_stories_formatters from 'executable-stories-formatters';
4
+ import * as executable_stories_core from 'executable-stories-core';
5
5
  import { DocEntry, StepKeyword } from 'executable-stories-formatters';
6
6
  export { DocEntry, NormalizedTicket, StepKeyword, StoryMeta, StoryStep } from 'executable-stories-formatters';
7
7
 
@@ -310,27 +310,27 @@ type Story = typeof story;
310
310
 
311
311
  declare const given: {
312
312
  (text: string, docs?: StoryDocs): void;
313
- (text: string, children: executable_stories_formatters.DocEntry[]): void;
313
+ (text: string, children: executable_stories_core.DocEntry[]): void;
314
314
  <T>(text: string, body: (fixtures: _playwright_test.PlaywrightTestArgs & _playwright_test.PlaywrightTestOptions & Record<string, unknown>, step?: _playwright_test.TestStepInfo) => T): T;
315
315
  };
316
316
  declare const when: {
317
317
  (text: string, docs?: StoryDocs): void;
318
- (text: string, children: executable_stories_formatters.DocEntry[]): void;
318
+ (text: string, children: executable_stories_core.DocEntry[]): void;
319
319
  <T>(text: string, body: (fixtures: _playwright_test.PlaywrightTestArgs & _playwright_test.PlaywrightTestOptions & Record<string, unknown>, step?: _playwright_test.TestStepInfo) => T): T;
320
320
  };
321
321
  declare const then: {
322
322
  (text: string, docs?: StoryDocs): void;
323
- (text: string, children: executable_stories_formatters.DocEntry[]): void;
323
+ (text: string, children: executable_stories_core.DocEntry[]): void;
324
324
  <T>(text: string, body: (fixtures: _playwright_test.PlaywrightTestArgs & _playwright_test.PlaywrightTestOptions & Record<string, unknown>, step?: _playwright_test.TestStepInfo) => T): T;
325
325
  };
326
326
  declare const and: {
327
327
  (text: string, docs?: StoryDocs): void;
328
- (text: string, children: executable_stories_formatters.DocEntry[]): void;
328
+ (text: string, children: executable_stories_core.DocEntry[]): void;
329
329
  <T>(text: string, body: (fixtures: _playwright_test.PlaywrightTestArgs & _playwright_test.PlaywrightTestOptions & Record<string, unknown>, step?: _playwright_test.TestStepInfo) => T): T;
330
330
  };
331
331
  declare const but: {
332
332
  (text: string, docs?: StoryDocs): void;
333
- (text: string, children: executable_stories_formatters.DocEntry[]): void;
333
+ (text: string, children: executable_stories_core.DocEntry[]): void;
334
334
  <T>(text: string, body: (fixtures: _playwright_test.PlaywrightTestArgs & _playwright_test.PlaywrightTestOptions & Record<string, unknown>, step?: _playwright_test.TestStepInfo) => T): T;
335
335
  };
336
336
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "executable-stories-playwright",
3
- "version": "8.5.6",
3
+ "version": "8.5.7",
4
4
  "description": "BDD-style executable stories for Playwright Test with documentation generation",
5
5
  "type": "module",
6
6
  "sideEffects": false,
@@ -33,7 +33,7 @@
33
33
  }
34
34
  },
35
35
  "dependencies": {
36
- "executable-stories-formatters": "0.17.0"
36
+ "executable-stories-formatters": "1.0.0"
37
37
  },
38
38
  "devDependencies": {
39
39
  "@opentelemetry/api": "^1.9.1",