Skip to content

Commit

Permalink
test: multi.spec test
Browse files Browse the repository at this point in the history
  • Loading branch information
cdimascio committed Feb 28, 2021
1 parent e794c59 commit c8cf43e
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 6 deletions.
File renamed without changes.
File renamed without changes.
Expand Up @@ -36,7 +36,7 @@ function createServer() {
const path = require('path');
const bodyParser = require('body-parser');
const http = require('http');
const OpenApiValidator = require('../../src');
const OpenApiValidator = require('../src');

const app = express();
app.use(bodyParser.urlencoded({ extended: false }));
Expand Down
8 changes: 3 additions & 5 deletions test/query.serialization.ts
@@ -1,12 +1,10 @@
import * as path from 'path';
import * as express from 'express';
import { expect } from 'chai';
import * as express from 'express';
import * as path from 'path';
import * as request from 'supertest';
import { createApp } from './common/app';
import * as packageJson from '../package.json';
import { log } from 'console';

describe.only('styles', () => {
describe('styles', () => {
let app = null;
before(async () => {
const apiSpec = path.join('test', 'resources', 'query.serialization.yaml');
Expand Down

0 comments on commit c8cf43e

Please sign in to comment.