Skip to content

Commit

Permalink
Remove .only from tests
Browse files Browse the repository at this point in the history
  • Loading branch information
AndriiSherman committed Nov 25, 2024
1 parent 675e285 commit cc04576
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion drizzle-kit/tests/push/common.ts
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ export const run = (

beforeEach(beforeEachFn ? () => beforeEachFn(context) : () => {});

test.only('No diffs for all database types', () => suite.allTypes(context));
test('No diffs for all database types', () => suite.allTypes(context));
test('Adding basic indexes', () => suite.addBasicIndexes(context));
test('Dropping basic index', () => suite.dropIndex(context));
test('Altering indexes', () => suite.changeIndexFields(context));
Expand Down

0 comments on commit cc04576

Please sign in to comment.