Skip to content

Commit 5c5d1ed

Browse files
committed
updated READNE
1 parent 553772e commit 5c5d1ed

File tree

4 files changed

+22
-27
lines changed

4 files changed

+22
-27
lines changed

Gruntfile.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ module.exports = function (grunt) {
3030
all: {
3131
options: {
3232
runType: 'runner', // defaults to 'client'
33-
config: 'tests/locale.js',
33+
config: 'tests/local.js',
3434
reporters: ['console', 'lcov']
3535
}
3636
}

README.md

Lines changed: 4 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,15 @@
1-
# d-amd-plugins
1+
# require-plugins
22

3-
> This repository is hosting alpha AMD plugin that will be used in Dojo 2. The content of this repository is highly unstable, untested and may vary without notice.
3+
> This repository is hosting alpha AMD plugins that will be used in Dojo 2. The content of this repository is highly unstable, untested and may vary without notice.
44
55
## maybe.js
66

7-
This plugin purpose is to load a file if it exists, while not blocking the loader if it does not. If the module was not found, it will be falsy.
7+
This plugin purpose is to load a file if it exists, while not blocking the loader if it does not. If the module was not found, it will be `undefined`.
88
This plugin should work with RequireJS and Dojo.
99

1010
## i18n.js
1111

12-
This plugin is based on requirejs i18n.
13-
* see: http://github.com/requirejs/i18n for details
14-
15-
## loadNlsAndLayer.js
16-
17-
This plugin is used to load layer files output by the Dojo 2 build system.
18-
12+
This plugin is based on requirejs i18n but modified to support nls built layer.
1913

2014
## Licensing
2115

tests/README.md

Lines changed: 17 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -1,24 +1,25 @@
1-
# webAmdApp
1+
# i18n Plugin Tests
2+
This directory contains the i18n plugin tests.
23

3-
Very basic web amd application to test grunt-amd-build plugin
4+
## Setup
5+
Before starting, install Intern, Grunt and RequireJS by running
46

5-
## Getting Started
7+
```
8+
$ npm install
9+
```
610

7-
After cloning the repo, install all the dependencies using npm:
11+
## Running the unit and functional tests locally
812

9-
$ npm install
10-
13+
1) Download selenium server 2.37.0 (http://www.seleniumhq.org/download/) and start it on the default port (4444):
1114

12-
## Running the build
13-
TODOC
15+
```
16+
$ java -jar selenium-server-standalone-2.37.0.jar
17+
```
1418

15-
## Launching the application
16-
TODOC
19+
2) Edit local.js to list which browsers to test
1720

18-
## Results
19-
TODOC
21+
3) Run the tests:
2022

21-
## Licensing
22-
23-
This project is distributed by the Dojo Foundation and licensed under the ["New" BSD License](https://github.com/dojo/dojo/blob/master/LICENSE#L13-L41).
24-
All contributions require a [Dojo Foundation CLA](http://dojofoundation.org/about/claForm).
23+
```
24+
grunt intern
25+
```
File renamed without changes.

0 commit comments

Comments
 (0)