Software zum Installieren eines Smart-Mirror Frameworks , zum Nutzen von hochschulrelevanten Informationen, auf einem Raspberry-Pi.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

index.d.ts 2.6KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. /**
  2. * Copyright (c) Facebook, Inc. and its affiliates. All Rights Reserved.
  3. *
  4. * This source code is licensed under the MIT license found in the
  5. * LICENSE file in the root directory of this source tree.
  6. */
  7. import type { Circus, Global } from '@jest/types';
  8. export { setState, getState, resetState } from './state';
  9. export { default as run } from './run';
  10. declare type THook = (fn: Circus.HookFn, timeout?: number) => void;
  11. declare const describe: {
  12. (blockName: Circus.BlockName, blockFn: Circus.BlockFn): void;
  13. each: (table: Global.EachTable, ...taggedTemplateData: Global.TemplateData) => (title: string, test: Global.EachTestFn<Global.TestCallback>, timeout?: number | undefined) => void;
  14. only: {
  15. (blockName: Circus.BlockName, blockFn: Circus.BlockFn): void;
  16. each: (table: Global.EachTable, ...taggedTemplateData: Global.TemplateData) => (title: string, test: Global.EachTestFn<Global.TestCallback>, timeout?: number | undefined) => void;
  17. };
  18. skip: {
  19. (blockName: Circus.BlockName, blockFn: Circus.BlockFn): void;
  20. each: (table: Global.EachTable, ...taggedTemplateData: Global.TemplateData) => (title: string, test: Global.EachTestFn<Global.TestCallback>, timeout?: number | undefined) => void;
  21. };
  22. };
  23. declare const beforeEach: THook;
  24. declare const beforeAll: THook;
  25. declare const afterEach: THook;
  26. declare const afterAll: THook;
  27. declare const test: Global.It;
  28. declare const it: Global.It;
  29. export declare type Event = Circus.Event;
  30. export declare type State = Circus.State;
  31. export { afterAll, afterEach, beforeAll, beforeEach, describe, it, test };
  32. declare const _default: {
  33. afterAll: THook;
  34. afterEach: THook;
  35. beforeAll: THook;
  36. beforeEach: THook;
  37. describe: {
  38. (blockName: string, blockFn: Global.BlockFn): void;
  39. each: (table: Global.EachTable, ...taggedTemplateData: Global.TemplateData) => (title: string, test: Global.EachTestFn<Global.TestCallback>, timeout?: number | undefined) => void;
  40. only: {
  41. (blockName: string, blockFn: Global.BlockFn): void;
  42. each: (table: Global.EachTable, ...taggedTemplateData: Global.TemplateData) => (title: string, test: Global.EachTestFn<Global.TestCallback>, timeout?: number | undefined) => void;
  43. };
  44. skip: {
  45. (blockName: string, blockFn: Global.BlockFn): void;
  46. each: (table: Global.EachTable, ...taggedTemplateData: Global.TemplateData) => (title: string, test: Global.EachTestFn<Global.TestCallback>, timeout?: number | undefined) => void;
  47. };
  48. };
  49. it: Global.It;
  50. test: Global.It;
  51. };
  52. export default _default;