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 schema tests to warp-drive__* variants #8986

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 .eslintignore
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
/packages/holodeck/
/packages/schema-record/
/packages/schema/
/tests/schema/
/tests/warp-drive__schema/
/packages/diagnostic/

**/DEBUG/
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
"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 builders-test-app run test",
"test": "pnpm --filter 'ember-data__*' --filter 'warp-drive__*' main-test-app --filter builders-test-app run test",
"test:production": "pnpm --filter main-test-app --filter ember-data__graph --filter ember-data__json-api 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",
Expand Down
151 changes: 1 addition & 150 deletions pnpm-lock.yaml

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

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 Request Builders Test App</title>
<title>@warp-drive/schema-record 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/builders-test-app.css">
<link rel="stylesheet" href="{{rootURL}}assets/warp-drive__schema-record.css">

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

<script src="{{rootURL}}assets/vendor.js"></script>
<script src="{{rootURL}}assets/builders-test-app.js"></script>
<script src="{{rootURL}}assets/warp-drive__schema-record.js"></script>

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

module.exports = function (environment) {
let ENV = {
modulePrefix: 'schema-record-test-app',
modulePrefix: 'warp-drive__schema-record',
environment,
rootURL: '/',
locationType: 'history',
Expand Down
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
{
"name": "schema-record-test-app",
"name": "warp-drive__schema-record",
"version": "5.5.0-alpha.11",
"description": "Provides tests for SchemaRecord",
"description": "Provides tests for @warp-drive/schema-record",
"private": true,
"keywords": [],
"repository": {
"type": "git",
"url": "git+ssh://git@github.com:emberjs/data.git",
"directory": "tests/schema-record"
"directory": "tests/warp-drive__schema-record"
},
"license": "MIT",
"author": "",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,15 +3,15 @@
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>Schema Record Tests</title>
<title>@warp-drive/schema-record Tests</title>
<meta name="description" content="">
<meta name="viewport" content="width=device-width, initial-scale=1">

{{content-for "head"}}
{{content-for "test-head"}}

<link rel="stylesheet" href="{{rootURL}}assets/vendor.css">
<link rel="stylesheet" href="{{rootURL}}assets/schema-record-test-app.css">
<link rel="stylesheet" href="{{rootURL}}assets/warp-drive__schema-record.css">
<link rel="stylesheet" href="{{rootURL}}assets/test-support.css">

{{content-for "head-footer"}}
Expand All @@ -31,7 +31,7 @@
<script src="/testem.js" integrity=""></script>
<script src="{{rootURL}}assets/vendor.js"></script>
<script src="{{rootURL}}assets/test-support.js"></script>
<script src="{{rootURL}}assets/schema-record-test-app.js"></script>
<script src="{{rootURL}}assets/warp-drive__schema-record.js"></script>
<script src="{{rootURL}}assets/tests.js"></script>

{{content-for "body-footer"}}
Expand Down
Loading