Skip to content

Commit 855dea0

Browse files
committed
More investigations
1 parent 31a04da commit 855dea0

File tree

5 files changed

+6
-6
lines changed

5 files changed

+6
-6
lines changed

spec/PostgresInitOptions.spec.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ describe_only_db('postgres')('Postgres database init options', () => {
3636
});
3737
});
3838

39-
it('should create server with public schema databaseOptions', (done) => {
39+
fit('should create server with public schema databaseOptions', (done) => {
4040
const config = new Config('test');
4141
// Close the current DB before continueing
4242
config.database.adapter._pgp.end();
@@ -53,7 +53,7 @@ describe_only_db('postgres')('Postgres database init options', () => {
5353
.then(done, done.fail);
5454
});
5555

56-
it('should fail to create server if schema databaseOptions does not exist', (done) => {
56+
fit('should fail to create server if schema databaseOptions does not exist', (done) => {
5757
const config = new Config('test');
5858
// Close the current DB before continueing
5959
config.database.adapter._pgp.end();

spec/PromiseRouter.spec.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
var PromiseRouter = require("../src/PromiseRouter").default;
22

3-
describe("PromiseRouter", () => {
3+
fdescribe("PromiseRouter", () => {
44
it("should properly handle rejects", (done) => {
55
var router = new PromiseRouter();
66
router.route("GET", "/dummy", ()=> {

spec/PublicAPI.spec.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11

22
var request = require('request');
33

4-
describe("public API", () => {
4+
fdescribe("public API", () => {
55
it("should get invalid_link.html", (done) => {
66
request('http://localhost:8378/1/apps/invalid_link.html', (err, httpResponse) => {
77
expect(httpResponse.statusCode).toBe(200);

spec/PurchaseValidation.spec.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ function createProduct() {
1919

2020
}
2121

22-
describe("test validate_receipt endpoint", () => {
22+
fdescribe("test validate_receipt endpoint", () => {
2323
beforeEach(done => {
2424
createProduct().then(done).fail(function(){
2525
done();

spec/RedisPubSub.spec.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
var RedisPubSub = require('../src/Adapters/PubSub/RedisPubSub').RedisPubSub;
22

3-
describe('RedisPubSub', function() {
3+
fdescribe('RedisPubSub', function() {
44

55
beforeEach(function(done) {
66
// Mock redis

0 commit comments

Comments
 (0)