@squiz/render-runtime-lib 1.2.1-alpha.63 → 1.2.1-alpha.68

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.
@@ -1,6 +1,16 @@
1
1
  import { ExecuteComponentTask } from '@squiz/component-lib';
2
+ declare type ComponentReturn = string | object;
2
3
  export declare class ComponentFixture {
3
- static fixtureDirectory: string;
4
+ static fixtureRootDirectory: string;
5
+ static setupFullComponentDirectory(returnObj: ComponentReturn): Promise<{
6
+ fixtureDirectory: string;
7
+ version: string;
8
+ componentName: string;
9
+ }>;
4
10
  static new(returnObj: string | object): Promise<ExecuteComponentTask>;
5
11
  static updateComponent(component: ExecuteComponentTask, output: string | object): Promise<ExecuteComponentTask>;
12
+ private static createFixtureDirectory;
13
+ private static createVersionDirectory;
14
+ private static createManifest;
6
15
  }
16
+ export {};
@@ -1,2 +1,4 @@
1
+ import supertest from 'supertest';
1
2
  import { type RenderRuntimeConfig } from '../../';
2
3
  export declare const testConfig: RenderRuntimeConfig;
4
+ export declare function getTestServer(): supertest.SuperTest<supertest.Test>;
@@ -0,0 +1,2 @@
1
+ export * from './helpers/fixtures';
2
+ export * from './helpers/stack';