Skip to content

Commit

Permalink
Merge pull request #7 from gallerymiguel/develop
Browse files Browse the repository at this point in the history
changing assert to with
  • Loading branch information
gallerymiguel authored Jan 12, 2025
2 parents 3be2aef + 7053e0b commit 9bd523d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion server/src/seeds/seed.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import db from "../config/connection.js";
import Question from "../models/Question.js";
import cleanDB from "./cleanDb.js";

import pythonQuestions from './pythonQuestions.json' assert { type: "json" };
import pythonQuestions from './pythonQuestions.json' with { type: "json" };

db.once('open', async () => {
await cleanDB('Question', 'questions');
Expand Down

0 comments on commit 9bd523d

Please sign in to comment.