@nestia/e2e 0.6.0 → 0.7.0-dev.20240709

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 (39) hide show
  1. package/lib/DynamicExecutor.d.ts +42 -34
  2. package/lib/DynamicExecutor.js +51 -81
  3. package/lib/DynamicExecutor.js.map +1 -1
  4. package/lib/GaffComparator.js +2 -6
  5. package/lib/GaffComparator.js.map +1 -1
  6. package/lib/RandomGenerator.js +21 -18
  7. package/lib/RandomGenerator.js.map +1 -1
  8. package/lib/TestValidator.d.ts +1 -1
  9. package/lib/TestValidator.js +7 -2
  10. package/lib/TestValidator.js.map +1 -1
  11. package/lib/module.d.ts +0 -2
  12. package/lib/module.js +0 -2
  13. package/lib/module.js.map +1 -1
  14. package/package.json +52 -59
  15. package/src/DynamicExecutor.ts +71 -87
  16. package/src/GaffComparator.ts +5 -10
  17. package/src/RandomGenerator.ts +7 -6
  18. package/src/TestValidator.ts +7 -3
  19. package/src/module.ts +0 -2
  20. package/lib/DynamicBenchmarker.d.ts +0 -176
  21. package/lib/DynamicBenchmarker.js +0 -577
  22. package/lib/DynamicBenchmarker.js.map +0 -1
  23. package/lib/StopWatch.d.ts +0 -24
  24. package/lib/StopWatch.js +0 -89
  25. package/lib/StopWatch.js.map +0 -1
  26. package/lib/structures/IBenchmarkEvent.d.ts +0 -9
  27. package/lib/structures/IBenchmarkEvent.js +0 -3
  28. package/lib/structures/IBenchmarkEvent.js.map +0 -1
  29. package/lib/structures/IBenchmarkMaster.d.ts +0 -6
  30. package/lib/structures/IBenchmarkMaster.js +0 -3
  31. package/lib/structures/IBenchmarkMaster.js.map +0 -1
  32. package/lib/structures/IBenchmarkServant.d.ts +0 -7
  33. package/lib/structures/IBenchmarkServant.js +0 -3
  34. package/lib/structures/IBenchmarkServant.js.map +0 -1
  35. package/src/DynamicBenchmarker.ts +0 -486
  36. package/src/StopWatch.ts +0 -38
  37. package/src/structures/IBenchmarkEvent.ts +0 -10
  38. package/src/structures/IBenchmarkMaster.ts +0 -5
  39. package/src/structures/IBenchmarkServant.ts +0 -8
@@ -1,8 +0,0 @@
1
- import { IBenchmarkEvent } from "./IBenchmarkEvent";
2
-
3
- export interface IBenchmarkServant {
4
- execute(props: {
5
- count: number;
6
- simultaneous: number;
7
- }): Promise<IBenchmarkEvent[]>;
8
- }