Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: rename graph-test-app to ember-data__graph #8980

Merged
merged 1 commit into from
Oct 9, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .eslintrc.js
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ module.exports = {
},
overrides: [
{
files: ['tests/json-api/**', 'tests/graph/**', 'tests/request/**'],
files: ['tests/json-api/**', 'tests/ember-data__graph/**', 'tests/request/**'],
rules: {
'qunit/no-assert-equal': 'off',
'qunit/no-assert-logical-expression': 'off',
Expand Down
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@
"lint:js": "eslint --quiet --cache --cache-strategy=content --ext=js,ts .",
"preinstall": "npx only-allow pnpm",
"problems": "tsc -p tsconfig.json --noEmit --pretty false",
"test": "pnpm --filter --filter 'ember-data__*' main-test-app --filter graph-test-app --filter json-api-test-app --filter request-test-app --filter builders-test-app run test",
"test:production": "pnpm --filter main-test-app --filter graph-test-app --filter json-api-test-app run test -e production",
"test": "pnpm --filter --filter 'ember-data__*' main-test-app --filter json-api-test-app --filter request-test-app --filter builders-test-app run test",
"test:production": "pnpm --filter main-test-app --filter ember-data__graph --filter json-api-test-app run test -e production",
"test:try-one": "pnpm --filter main-test-app run test:try-one",
"test:docs": "pnpm build:docs && pnpm --filter docs-tests test",
"test:encapsulation": "pnpm --filter '*-encapsulation-test-app' run test",
Expand Down
304 changes: 152 additions & 152 deletions pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

12 changes: 12 additions & 0 deletions tests/ember-data__graph/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
# Tests for @ember-data/graph

This test-package provides tests for the `@ember-data/graph` package.

## Running Tests Locally

If you do not already have the project cloned and dependencies installed, you may want to first read [Setting Up The Project](../../contributing/setting-up-the-project.md)

```cli
cd tests/ember-data__graph;
pnpm test;
```
File renamed without changes.
Original file line number Diff line number Diff line change
Expand Up @@ -3,22 +3,22 @@
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>EmberData Graph Test App</title>
<title>@ember-data/graph Tests</title>
<meta name="description" content="">
<meta name="viewport" content="width=device-width, initial-scale=1">

{{content-for "head"}}

<link rel="stylesheet" href="{{rootURL}}assets/vendor.css">
<link rel="stylesheet" href="{{rootURL}}assets/graph-test-app.css">
<link rel="stylesheet" href="{{rootURL}}assets/ember-data__graph.css">

{{content-for "head-footer"}}
</head>
<body>
{{content-for "body"}}

<script src="{{rootURL}}assets/vendor.js"></script>
<script src="{{rootURL}}assets/graph-test-app.js"></script>
<script src="{{rootURL}}assets/ember-data__graph.js"></script>

{{content-for "body-footer"}}
</body>
Expand Down
File renamed without changes.
File renamed without changes.
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

module.exports = function (environment) {
let ENV = {
modulePrefix: 'graph-test-app',
modulePrefix: 'ember-data__graph',
environment,
rootURL: '/',
locationType: 'history',
Expand Down
Loading