Skip to content

Commit

Permalink
chore: rename graph-test-app to ember-data__graph (#8980)
Browse files Browse the repository at this point in the history
  • Loading branch information
runspired authored Oct 9, 2023
1 parent 72e570c commit aed6245
Show file tree
Hide file tree
Showing 37 changed files with 179 additions and 170 deletions.
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.
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.
File renamed without changes.
File renamed without changes.
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
File renamed without changes.
File renamed without changes.
File renamed without changes.
Loading

0 comments on commit aed6245

Please sign in to comment.