Add automigrate to setup tables for replace test cases

This commit is contained in:
Amir Jafarian 2016-03-29 12:21:10 -04:00
parent e4918ba490
commit 8b8d474b92
1 changed files with 4 additions and 2 deletions

View File

@ -694,12 +694,13 @@ describe('manipulation', function () {
describe('replaceOrCreate', function() {
var Post;
var ds = getSchema();
before(function() {
before(function(done) {
Post = ds.define('Post', {
title: { type: String, length: 255, index: true },
content: { type: String },
comments: [String]
});
ds.automigrate('Post', done);
});
it('works without options on create (promise variant)', function(done) {
@ -910,12 +911,13 @@ describe('manipulation', function () {
var postInstance;
var Post;
var ds = getSchema();
before(function () {
before(function (done) {
Post = ds.define('Post', {
title: {type: String, length: 255, index: true},
content: {type: String},
comments: [String]
});
ds.automigrate('Post', done);
});
beforeEach(function (done) {
Post.destroyAll(function () {