Commit 033e99ab authored by Pedro Eduardo Trujillo's avatar Pedro Eduardo Trujillo
Browse files

Renombra tests a singular, actualiza ejemplos

parent aac1719c
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -90,7 +90,7 @@ run-local-modules-functional-tests:
    - npm start &
    - >
      grunt test-functional-local
      --functionalSuites=tests/functional/modules/**/!\(*Script\).js
      --functionalSuites=test/functional/modules/**/!\(*Script\).js
      --headless
      --browser=${TEST_BROWSER}
      --seleniumVersion=${LOCAL_SELENIUM_VERSION}
@@ -106,7 +106,7 @@ run-local-modules-functional-tests:
    - npm start &
    - >
      grunt test-functional-remote
      --functionalSuites=tests/functional/modules/**/!\(*Script\).js
      --functionalSuites=test/functional/modules/**/!\(*Script\).js
      --headless
      --browser=${TEST_BROWSER}
      --ownServerHost="${TEST_OWN_SERVER_HOST}"
+1 −1
Original line number Diff line number Diff line
@@ -14,7 +14,7 @@ module.exports = function(grunt) {
			rootPath: __dirname,
			srcPath: 'client-app/src',
			depsPath: 'client-app/deps',
			testPath: 'client-app/tests',
			testPath: 'client-app/test',
			distPath: 'dist',
			destDir: 'javascript'
		},
+4 −4
Original line number Diff line number Diff line
@@ -65,7 +65,7 @@ Como ejemplo de ejecución de tests locales (unitarios y funcionales), veamos lo

```sh
grunt test-unit-local \
  --suites=tests/unit/src/component/model/testModelImpl \
  --suites=test/unit/src/component/model/testModelImpl \
  --browser=chrome \
  --headless \
  --coverage=false
@@ -75,7 +75,7 @@ grunt test-unit-local \

```sh
grunt test-functional-local \
  --functionalSuites=tests/functional/modules/**/!(*Script).js \
  --functionalSuites=test/functional/modules/**/!(*Script).js \
  --browser=chrome
```

@@ -137,7 +137,7 @@ Como ejemplo de ejecución de tests remotos (unitarios y funcionales), pero apun

```sh
grunt test-unit-remote \
  --suites=tests/unit/src/component/model/testModelImpl \
  --suites=test/unit/src/component/model/testModelImpl \
  --browser=firefox \
  --headless \
  --coverage=false
@@ -147,7 +147,7 @@ grunt test-unit-remote \

```sh
grunt test-functional-remote \
  --functionalSuites=tests/functional/modules/**/!(*Script).js \
  --functionalSuites=test/functional/modules/**/!(*Script).js \
  --browser=chrome \
  --headless
```
+2 −2
Original line number Diff line number Diff line
@@ -24,8 +24,8 @@ module.exports = function(args) {
	dojoConfig.baseUrl = dojoBaseUrl;

	dojoConfig.packages.push({
		name: 'tests',
		location: '../../../tests'
		name: 'test',
		location: '../../../test'
	});

	return dojoConfig;
Loading