Skip to content

Commit

Permalink
fix: add dummy test to not fail ci
Browse files Browse the repository at this point in the history
  • Loading branch information
Dafnik committed Mar 18, 2024
1 parent da2d948 commit e229a19
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion libs/dfx-helper/src/lib/test.spec.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
import { DfxCutPipe } from "./pipes";

describe('Test', () => {
const cutPipe = new DfxCutPipe();
it('placeholder test', () => {
expect(5 + 1).toBe(6);
expect(cutPipe.transform('test', 2)).toBe('te...');
});
});

0 comments on commit e229a19

Please sign in to comment.