guides-source
guides-source copied to clipboard
This repository contains the Ember.js Guides
Bumps [markdown-link-extractor](https://github.com/tcort/markdown-link-extractor) from 1.2.3 to 3.0.2. Release notes Sourced from markdown-link-extractor's releases. 1.3.0 Version 1.3.0 extended output mode update dependencies Changelog Sourced from markdown-link-extractor's changelog. version 3.0.2 add missing dep...
- In the Introduction Page of Testing, add a sub-heading `How to write tests?` - Under this sub-heading, add a small example of a Test to make the flow clear...
Introduce end-to-end testing based on [testRigor](https://www.testrigor.com/)
Related: https://github.com/ember-learn/guides-source/pull/1802 Backport https://github.com/ember-learn/guides-source/pull/1802 to previous version where it makes sense. The code will need to be tweaked for versions that don't support `import { service } from '@ember/object;` and...
One thing I stumbled upon when trying Ember Data is the seemingly lack of support for namespaced data models. Running `ember generate model user/google` generates a UserGoogle model in `app/models/user/google.js`....
So today I learned something that, for some reason, I had not well until now… Ember doesn’t use [Handlebars](https://handlebarsjs.com/guide/), but rather _something similar and close but not the same as...
this page: https://guides.emberjs.com/release/tutorial/part-1/automated-testing/ says to use `ember test --server` -- which is problematic for a multitude of reasons, and while it'd be better to fix those issues, most folks want...
The example on [Preventing Transitions via willTransition](https://guides.emberjs.com/release/routing/preventing-and-retrying-transitions/#toc_preventing-transitions-via-willtransition) is using `this.controller` from inside route `willTransition`. This behaviour is flagged as error [ember/no-controller-access-in-routes](https://github.com/ember-cli/eslint-plugin-ember/blob/master/docs/rules/no-controller-access-in-routes.md) by es-lint. ``` error Do not access controller in...
Need additional clarification on this page: https://guides.emberjs.com/release/components/block-content/ When I try to follow the example, I get this error: `Unexpected named block inside HTML element` It would be helpful if the...
To do: - Ask the framework team for some context about whether this is essential info, and how they hope people will use it. @locks is asking on Discord -...