2015-10-30 18:31:26 +00:00
|
|
|
# API Examples
|
|
|
|
|
|
|
|
|
|
This folder contains small example apps that get in-lined into our API docs.
|
|
|
|
|
Each example contains tests for application behavior (as opposed to testing Angular's
|
|
|
|
|
behavior) just like an Angular application developer would write.
|
2016-12-08 05:41:21 +00:00
|
|
|
|
|
|
|
|
# Running the examples
|
|
|
|
|
|
|
|
|
|
```
|
2019-01-28 20:59:25 +00:00
|
|
|
# Serving individual examples (e.g. common)
|
2025-07-31 15:17:27 +00:00
|
|
|
pnpm bazel run //packages/examples/common:devserver
|
2016-12-08 05:41:21 +00:00
|
|
|
|
2019-01-28 20:59:25 +00:00
|
|
|
# "core" examples
|
2025-07-31 15:17:27 +00:00
|
|
|
pnpm bazel run //packages/examples/core:devserver
|
2016-12-08 05:41:21 +00:00
|
|
|
```
|
|
|
|
|
|
|
|
|
|
# Running the tests
|
|
|
|
|
|
|
|
|
|
```
|
2025-07-31 15:17:27 +00:00
|
|
|
pnpm bazel test //packages/examples/...
|
2025-11-06 18:03:05 +00:00
|
|
|
```
|