executable-stories-playwright 8.6.0 → 8.6.1

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 { Page, TestInfo, PlaywrightTestArgs, PlaywrightTestOptions, TestStepInfo } from '@playwright/test';
3
3
  export { TestStepInfo } from '@playwright/test';
4
- import * as executable_stories_core from 'executable-stories-core';
4
+ import * as executable_stories_formatters from 'executable-stories-formatters';
5
5
  import { DocEntry, StepKeyword } from 'executable-stories-formatters';
6
6
  export { DocEntry, NormalizedTicket, StepKeyword, StoryMeta, StoryStep } from 'executable-stories-formatters';
7
7
 
@@ -345,27 +345,27 @@ type Story = typeof story;
345
345
 
346
346
  declare const given: {
347
347
  (text: string, docs?: StoryDocs): void;
348
- (text: string, children: executable_stories_core.DocEntry[]): void;
348
+ (text: string, children: executable_stories_formatters.DocEntry[]): void;
349
349
  <T>(text: string, body: (fixtures: _playwright_test.PlaywrightTestArgs & _playwright_test.PlaywrightTestOptions & Record<string, unknown>, step?: _playwright_test.TestStepInfo) => T): T;
350
350
  };
351
351
  declare const when: {
352
352
  (text: string, docs?: StoryDocs): void;
353
- (text: string, children: executable_stories_core.DocEntry[]): void;
353
+ (text: string, children: executable_stories_formatters.DocEntry[]): void;
354
354
  <T>(text: string, body: (fixtures: _playwright_test.PlaywrightTestArgs & _playwright_test.PlaywrightTestOptions & Record<string, unknown>, step?: _playwright_test.TestStepInfo) => T): T;
355
355
  };
356
356
  declare const then: {
357
357
  (text: string, docs?: StoryDocs): void;
358
- (text: string, children: executable_stories_core.DocEntry[]): void;
358
+ (text: string, children: executable_stories_formatters.DocEntry[]): void;
359
359
  <T>(text: string, body: (fixtures: _playwright_test.PlaywrightTestArgs & _playwright_test.PlaywrightTestOptions & Record<string, unknown>, step?: _playwright_test.TestStepInfo) => T): T;
360
360
  };
361
361
  declare const and: {
362
362
  (text: string, docs?: StoryDocs): void;
363
- (text: string, children: executable_stories_core.DocEntry[]): void;
363
+ (text: string, children: executable_stories_formatters.DocEntry[]): void;
364
364
  <T>(text: string, body: (fixtures: _playwright_test.PlaywrightTestArgs & _playwright_test.PlaywrightTestOptions & Record<string, unknown>, step?: _playwright_test.TestStepInfo) => T): T;
365
365
  };
366
366
  declare const but: {
367
367
  (text: string, docs?: StoryDocs): void;
368
- (text: string, children: executable_stories_core.DocEntry[]): void;
368
+ (text: string, children: executable_stories_formatters.DocEntry[]): void;
369
369
  <T>(text: string, body: (fixtures: _playwright_test.PlaywrightTestArgs & _playwright_test.PlaywrightTestOptions & Record<string, unknown>, step?: _playwright_test.TestStepInfo) => T): T;
370
370
  };
371
371
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "executable-stories-playwright",
3
- "version": "8.6.0",
3
+ "version": "8.6.1",
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": "1.0.1"
36
+ "executable-stories-formatters": "1.1.0"
37
37
  },
38
38
  "devDependencies": {
39
39
  "@opentelemetry/api": "^1.9.1",