commit
1934b687c3
@ -1,76 +0,0 @@ |
||||
# RemixProject |
||||
|
||||
This project was generated using [Nx](https://nx.dev). |
||||
|
||||
<p align="center"><img src="https://raw.githubusercontent.com/nrwl/nx/master/nx-logo.png" width="450"></p> |
||||
|
||||
🔎 **Nx is a set of Extensible Dev Tools for Monorepos.** |
||||
|
||||
## Adding capabilities to your workspace |
||||
|
||||
Nx supports many plugins which add capabilities for developing different types of applications and different tools. |
||||
|
||||
These capabilities include generating applications, libraries, etc as well as the devtools to test, and build projects as well. |
||||
|
||||
Below are some plugins which you can add to your workspace: |
||||
|
||||
- [React](https://reactjs.org) |
||||
- `npm install --save-dev @nrwl/react` |
||||
- Web (no framework frontends) |
||||
- `npm install --save-dev @nrwl/web` |
||||
- [Angular](https://angular.io) |
||||
- `npm install --save-dev @nrwl/angular` |
||||
- [Nest](https://nestjs.com) |
||||
- `npm install --save-dev @nrwl/nest` |
||||
- [Express](https://expressjs.com) |
||||
- `npm install --save-dev @nrwl/express` |
||||
- [Node](https://nodejs.org) |
||||
- `npm install --save-dev @nrwl/node` |
||||
|
||||
## Generate an application |
||||
|
||||
Run `nx g @nrwl/react:app my-app` to generate an application. |
||||
|
||||
> You can use any of the plugins above to generate applications as well. |
||||
|
||||
When using Nx, you can create multiple applications and libraries in the same workspace. |
||||
|
||||
## Generate a library |
||||
|
||||
Run `nx g @nrwl/react:lib my-lib` to generate a library. |
||||
|
||||
> You can also use any of the plugins above to generate libraries as well. |
||||
|
||||
Libraries are sharable across libraries and applications. They can be imported from `@remix-project/mylib`. |
||||
|
||||
## Development server |
||||
|
||||
Run `nx serve my-app` for a dev server. Navigate to http://localhost:4200/. The app will automatically reload if you change any of the source files. |
||||
|
||||
## Code scaffolding |
||||
|
||||
Run `nx g @nrwl/react:component my-component --project=my-app` to generate a new component. |
||||
|
||||
## Build |
||||
|
||||
Run `nx build my-app` to build the project. The build artifacts will be stored in the `dist/` directory. Use the `--prod` flag for a production build. |
||||
|
||||
## Running unit tests |
||||
|
||||
Run `nx test my-app` to execute the unit tests via [Jest](https://jestjs.io). |
||||
|
||||
Run `nx affected:test` to execute the unit tests affected by a change. |
||||
|
||||
## Running end-to-end tests |
||||
|
||||
Run `ng e2e my-app` to execute the end-to-end tests via [Cypress](https://www.cypress.io). |
||||
|
||||
Run `nx affected:e2e` to execute the end-to-end tests affected by a change. |
||||
|
||||
## Understand your workspace |
||||
|
||||
Run `nx dep-graph` to see a diagram of the dependencies of your projects. |
||||
|
||||
## Further help |
||||
|
||||
Visit the [Nx Documentation](https://nx.dev) to learn more. |
@ -1,84 +0,0 @@ |
||||
'use strict' |
||||
require('@babel/register')() |
||||
|
||||
const crxFile = require('fs').readFileSync('test-browser/extensions/chrome/metamask.crx') |
||||
const metamaskExtension = new Buffer.from(crxFile).toString('base64') // eslint-disable-line |
||||
|
||||
module.exports = { |
||||
'src_folders': ['test-browser/tests'], |
||||
'output_folder': 'reports/tests', |
||||
'custom_commands_path': ['test-browser/commands'], |
||||
'custom_assertions_path': '', |
||||
'page_objects_path': '', |
||||
'globals_path': '', |
||||
|
||||
'test_settings': { |
||||
'default': { |
||||
'selenium_port': 4444, |
||||
'selenium_host': 'localhost', |
||||
'globals': { |
||||
'waitForConditionTimeout': 10000, |
||||
'asyncHookTimeout': 100000 |
||||
}, |
||||
'screenshots': { |
||||
'enabled': true, |
||||
'path': './reports/screenshots', |
||||
'on_failure': true, |
||||
'on_error': true |
||||
}, |
||||
'desiredCapabilities': { |
||||
'browserName': 'firefox', |
||||
'javascriptEnabled': true, |
||||
'acceptSslCerts': true |
||||
}, |
||||
'exclude': ['tests/runAndDeploy.js'] |
||||
}, |
||||
|
||||
'chrome': { |
||||
'desiredCapabilities': { |
||||
'browserName': 'chrome', |
||||
'javascriptEnabled': true, |
||||
'acceptSslCerts': true, |
||||
'goog:chromeOptions': { |
||||
'args': ['window-size=2560,1440', 'start-fullscreen'] |
||||
} |
||||
} |
||||
}, |
||||
|
||||
'chrome-runAndDeploy': { |
||||
'desiredCapabilities': { |
||||
'browserName': 'chrome', |
||||
'javascriptEnabled': true, |
||||
'acceptSslCerts': true, |
||||
'goog:chromeOptions': { |
||||
'args': ['window-size=2560,1440', 'start-fullscreen'], |
||||
'extensions': [metamaskExtension] |
||||
} |
||||
} |
||||
}, |
||||
|
||||
'safari': { |
||||
'desiredCapabilities': { |
||||
'browserName': 'safari', |
||||
'javascriptEnabled': true, |
||||
'acceptSslCerts': true |
||||
} |
||||
}, |
||||
|
||||
'ie': { |
||||
'desiredCapabilities': { |
||||
'browserName': 'internet explorer', |
||||
'javascriptEnabled': true, |
||||
'acceptSslCerts': true |
||||
} |
||||
}, |
||||
|
||||
'firefox': { |
||||
'desiredCapabilities': { |
||||
'browserName': 'firefox', |
||||
'javascriptEnabled': true, |
||||
'acceptSslCerts': true |
||||
} |
||||
} |
||||
} |
||||
} |
File diff suppressed because it is too large
Load Diff
@ -0,0 +1,26 @@ |
||||
const EventEmitter = require('events') |
||||
|
||||
class OpenFile extends EventEmitter { |
||||
command (name) { |
||||
this.api.perform((done) => { |
||||
openFile(this.api, name, () => { |
||||
done() |
||||
this.emit('complete') |
||||
}) |
||||
}) |
||||
return this |
||||
} |
||||
} |
||||
|
||||
// click on fileExplorer can toggle it. We go through settings to be sure FE is open
|
||||
function openFile (browser, name, done) { |
||||
browser.clickLaunchIcon('settings').clickLaunchIcon('fileExplorers') |
||||
.waitForElementVisible('li[key="' + name + '"]') |
||||
.click('li[key="' + name + '"]') |
||||
.pause(2000) |
||||
.perform(() => { |
||||
done() |
||||
}) |
||||
} |
||||
|
||||
module.exports = OpenFile |
File diff suppressed because it is too large
Load Diff
File diff suppressed because one or more lines are too long
Loading…
Reference in new issue