Skip to content

Commit 9c95e2b

Browse files
committed
should really fix the build
1 parent 787e141 commit 9c95e2b

File tree

2 files changed

+6
-5
lines changed

2 files changed

+6
-5
lines changed

tests/i18nBuilt.js

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,8 @@ define([
66
var testLayer = function (that, options, locale, layerResult, layerHint, bundleResult, bundleHint) {
77
return that.remote
88
.get(require.toUrl('./testBuilt.html?' + locale + '&' + options))
9-
.wait(5000)
9+
// TODO waitForCondition
10+
.wait(15000)
1011
.elementById('layer')
1112
.text()
1213
.then(function (txt) {
@@ -158,7 +159,7 @@ define([
158159
return testLayer(this, 'f&f&t',
159160
'en',
160161
'En from Layer Bundle A En from Layer Bundle B',
161-
'The layer en should not be found',
162+
'The layer en should be found',
162163
'Root Text from Bundle C Root Text from Bundle D',
163164
'The best match should be found');
164165
},

tests/sauce.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ define({
77
proxyPort: 9000,
88

99
// A fully qualified URL to the Intern proxy
10-
proxyUrl: "http://localhost:9000/",
10+
proxyUrl: "http://127.0.0.1:9000/",
1111

1212
// Default desired capabilities for all environments. Individual capabilities can be overridden by any of the
1313
// specified browser environments in the `environments` array below as well. See
@@ -27,8 +27,8 @@ define({
2727
// Desktop.
2828
// { browserName: "internet explorer", version: "11", platform: "Windows 8.1" },
2929
// { browserName: "internet explorer", version: "10", platform: "Windows 8" },
30-
{ browserName: "firefox"}, //, version: "25", platform: [ /*"OS X 10.6", "Linux", */ "Windows 7" ] },
31-
{ browserName: "chrome"}//, version: "", platform: [ /*"OS X 10.6", "Linux", */ "Windows 7" ] },
30+
{ browserName: "firefox", version: "25"},
31+
{ browserName: "chrome", version: "33"}//, version: "", platform: [ /*"OS X 10.6", "Linux", */ "Windows 7" ] },
3232
// { browserName: "safari", version: "6", platform: [ "OS X 10.8" ] },
3333

3434
// // Mobile

0 commit comments

Comments
 (0)