save auth code

This commit is contained in:
zoe 2022-07-01 16:14:13 +02:00
parent bb8680e3f6
commit 21e130b6f6
3 changed files with 41 additions and 4 deletions

11
test/user/regex_test.dart Normal file
View file

@ -0,0 +1,11 @@
import 'package:flutter_test/flutter_test.dart';
void main() {
matchWords();
}
void matchWords() {
test("try matching some words", () {
expect(RegExp(r"tiger").hasMatch("tigerfucker"), true);
});
}