aboutsummaryrefslogtreecommitdiffstats
path: root/tests/utils.ts
blob: 14460b9e51665366bed2d538d2012dffdfe751bd (plain) (blame)
1
2
3
4
5
6
import View from '@ioc:Adonis/Core/View';

export function fakeCsrfField(): void {
  // Create fake csrField function in the view
  View.global('csrfField', () => '');
}