https://github.com/angular/angular
Raw File
Tip revision: 2b0698def0197060ac13c67215fbe4bfea259b44 authored by Dylan Hunn on 25 October 2023, 21:31:06 UTC
release: cut the v17.0.0-rc.1 release
Tip revision: 2b0698d
README.md
# 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.

# Running the examples

```
# Serving individual examples (e.g. common)
yarn bazel run //packages/examples/common:devserver

# "core" examples
yarn bazel run //packages/examples/core:devserver
```

# Running the tests

```
yarn bazel test //packages/examples/...
```
back to top