We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5aa8424 commit c4970aeCopy full SHA for c4970ae
test/integration/property-timezones.js
@@ -4,6 +4,12 @@ var common = require('../common');
4
var ORM = require('../../');
5
6
if (common.protocol() == "mongodb") return;
7
+if (common.protocol() == "sqlite" && !common.getConfig().pathname) {
8
+ // sqlite needs a pathname for this test (because of reconnecting)
9
+ // if using memory, when disconnecting everything is lost and this
10
+ // test needs it
11
+ return;
12
+}
13
14
describe("Timezones", function() {
15
var db = null;
@@ -58,7 +64,7 @@ describe("Timezones", function() {
58
64
}
59
65
});
60
66
61
- describe.skip("different for each connection", function () {
67
+ describe("different for each connection", function () {
62
68
before(setup({
63
69
sync : true,
70
query : { timezone: '+0200' }
0 commit comments