@fluid-internal/test-driver-definitions 2.1.0 → 2.2.0
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.
- package/CHANGELOG.md +4 -0
- package/README.md +55 -0
- package/package.json +5 -5
package/CHANGELOG.md
CHANGED
package/README.md
CHANGED
|
@@ -1,3 +1,58 @@
|
|
|
1
1
|
# @fluid-internal/test-driver-definitions
|
|
2
2
|
|
|
3
3
|
Definitions for test drivers. Test should only take a dependency on these definitions, and not the implementations provided in the `@fluid-private/test-drivers` package. At runtime the environment should provide an implementation for the global getFluidTestDriver driver function, which tests can then use to access the implementation.
|
|
4
|
+
|
|
5
|
+
<!-- AUTO-GENERATED-CONTENT:START (LIBRARY_README_HEADER) -->
|
|
6
|
+
|
|
7
|
+
<!-- prettier-ignore-start -->
|
|
8
|
+
<!-- NOTE: This section is automatically generated using @fluid-tools/markdown-magic. Do not update these generated contents directly. -->
|
|
9
|
+
|
|
10
|
+
**IMPORTANT: This package is intended strictly as an implementation detail of the Fluid Framework and is not intended for public consumption.**
|
|
11
|
+
**We make no stability guarantees regarding its APIs.**
|
|
12
|
+
|
|
13
|
+
<!-- prettier-ignore-end -->
|
|
14
|
+
|
|
15
|
+
<!-- AUTO-GENERATED-CONTENT:END -->
|
|
16
|
+
|
|
17
|
+
<!-- AUTO-GENERATED-CONTENT:START (README_FOOTER) -->
|
|
18
|
+
|
|
19
|
+
<!-- prettier-ignore-start -->
|
|
20
|
+
<!-- NOTE: This section is automatically generated using @fluid-tools/markdown-magic. Do not update these generated contents directly. -->
|
|
21
|
+
|
|
22
|
+
## Contribution Guidelines
|
|
23
|
+
|
|
24
|
+
There are many ways to [contribute](https://github.com/microsoft/FluidFramework/blob/main/CONTRIBUTING.md) to Fluid.
|
|
25
|
+
|
|
26
|
+
- Participate in Q&A in our [GitHub Discussions](https://github.com/microsoft/FluidFramework/discussions).
|
|
27
|
+
- [Submit bugs](https://github.com/microsoft/FluidFramework/issues) and help us verify fixes as they are checked in.
|
|
28
|
+
- Review the [source code changes](https://github.com/microsoft/FluidFramework/pulls).
|
|
29
|
+
- [Contribute bug fixes](https://github.com/microsoft/FluidFramework/blob/main/CONTRIBUTING.md).
|
|
30
|
+
|
|
31
|
+
Detailed instructions for working in the repo can be found in the [Wiki](https://github.com/microsoft/FluidFramework/wiki).
|
|
32
|
+
|
|
33
|
+
This project has adopted the [Microsoft Open Source Code of Conduct](https://opensource.microsoft.com/codeofconduct/).
|
|
34
|
+
For more information see the [Code of Conduct FAQ](https://opensource.microsoft.com/codeofconduct/faq/) or contact [opencode@microsoft.com](mailto:opencode@microsoft.com) with any additional questions or comments.
|
|
35
|
+
|
|
36
|
+
This project may contain Microsoft trademarks or logos for Microsoft projects, products, or services.
|
|
37
|
+
Use of these trademarks or logos must follow Microsoft’s [Trademark & Brand Guidelines](https://www.microsoft.com/trademarks).
|
|
38
|
+
Use of Microsoft trademarks or logos in modified versions of this project must not cause confusion or imply Microsoft sponsorship.
|
|
39
|
+
|
|
40
|
+
## Help
|
|
41
|
+
|
|
42
|
+
Not finding what you're looking for in this README? Check out [fluidframework.com](https://fluidframework.com/docs/).
|
|
43
|
+
|
|
44
|
+
Still not finding what you're looking for? Please [file an issue](https://github.com/microsoft/FluidFramework/wiki/Submitting-Bugs-and-Feature-Requests).
|
|
45
|
+
|
|
46
|
+
Thank you!
|
|
47
|
+
|
|
48
|
+
## Trademark
|
|
49
|
+
|
|
50
|
+
This project may contain Microsoft trademarks or logos for Microsoft projects, products, or services.
|
|
51
|
+
|
|
52
|
+
Use of these trademarks or logos must follow Microsoft's [Trademark & Brand Guidelines](https://www.microsoft.com/en-us/legal/intellectualproperty/trademarks/usage/general).
|
|
53
|
+
|
|
54
|
+
Use of Microsoft trademarks or logos in modified versions of this project must not cause confusion or imply Microsoft sponsorship.
|
|
55
|
+
|
|
56
|
+
<!-- prettier-ignore-end -->
|
|
57
|
+
|
|
58
|
+
<!-- AUTO-GENERATED-CONTENT:END -->
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@fluid-internal/test-driver-definitions",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.2.0",
|
|
4
4
|
"description": "A driver abstraction and implementations for testing against server",
|
|
5
5
|
"homepage": "https://fluidframework.com",
|
|
6
6
|
"repository": {
|
|
@@ -25,15 +25,15 @@
|
|
|
25
25
|
"main": "",
|
|
26
26
|
"types": "lib/index.d.ts",
|
|
27
27
|
"dependencies": {
|
|
28
|
-
"@fluidframework/core-interfaces": "~2.
|
|
29
|
-
"@fluidframework/driver-definitions": "~2.
|
|
28
|
+
"@fluidframework/core-interfaces": "~2.2.0",
|
|
29
|
+
"@fluidframework/driver-definitions": "~2.2.0"
|
|
30
30
|
},
|
|
31
31
|
"devDependencies": {
|
|
32
32
|
"@arethetypeswrong/cli": "^0.15.2",
|
|
33
33
|
"@biomejs/biome": "~1.8.3",
|
|
34
|
-
"@fluid-tools/build-cli": "^0.
|
|
34
|
+
"@fluid-tools/build-cli": "^0.43.0",
|
|
35
35
|
"@fluidframework/build-common": "^2.0.3",
|
|
36
|
-
"@fluidframework/build-tools": "^0.
|
|
36
|
+
"@fluidframework/build-tools": "^0.43.0",
|
|
37
37
|
"@fluidframework/eslint-config-fluid": "^5.3.0",
|
|
38
38
|
"@microsoft/api-extractor": "^7.45.1",
|
|
39
39
|
"concurrently": "^8.2.1",
|